diff --git a/src/pages/archive.js b/src/pages/archive.js index af9f272..1030aab 100644 --- a/src/pages/archive.js +++ b/src/pages/archive.js @@ -14,7 +14,7 @@ export default function Archive({ data }) { const postListItems = yg.edges.map(({node}) => { return (
  • - {node.frontmatter.title} + {node.frontmatter.date} {node.frontmatter.title}
  • ); }); @@ -48,6 +48,7 @@ export const query = graphql` } frontmatter { title + date(formatString: "MMM Do") } } }