Upgrade to 1.0-alpha16

This commit is contained in:
Kyle Mathews 2017-05-26 10:46:52 +01:00
parent 11e1d019cb
commit 4f47229cb6
4 changed files with 38 additions and 36 deletions

View file

@ -23,7 +23,7 @@ class BlogIndex extends React.Component {
marginBottom: rhythm(1 / 4),
}}
>
<Link style={{ boxShadow: "none" }} to={post.node.slug}>
<Link style={{ boxShadow: "none" }} to={post.node.fields.slug}>
{post.node.frontmatter.title}
</Link>
</li>
@ -59,7 +59,9 @@ query IndexQuery {
allMarkdownRemark {
edges {
node {
slug
fields {
slug
}
frontmatter {
title
}