isaacs / blog.izs.me

eleventy app that powers my blog
https://blog.izs.me
Other
14 stars 13 forks source link

tag pages #6

Closed isaacs closed 5 years ago

isaacs commented 5 years ago

Create pages like http://blog.izs.me/tagged/poem for all the tags found in markdown frontmatters.

isaacs commented 5 years ago

Note that these also have to be paginated, related to #5.

isaacs commented 5 years ago

GraphQL query for this:

  allMarkdownRemark(filter: {frontmatter: {tags: {in: ["poem"]}}}) {
    edges {
      node {
      frontmatter, html, etc.
      }
    }
  }
isaacs commented 5 years ago

aac652a9db1d6f318d4bc01ffd49e687cf1d5e02