Add plugins to create responsive images

This commit is contained in:
Moris Zen
2018-07-06 10:18:15 +02:00
parent 7867ae3b09
commit 992359788d
4 changed files with 1357 additions and 41 deletions

View File

@@ -13,7 +13,7 @@ class Blog extends Component {
<Card
url={`blog/${node.slug}`}
title={node.title}
postId={node.slug}
postId={node.id}
date={node.date}
excerpt={node.excerpt}
/>
@@ -31,6 +31,7 @@ export const query = graphql`
id
title
excerpt
status
slug
date(formatString: "MMMM DD, YYYY")
}