We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm thinking we could add a new tags front-matter variable to filter posts by tag, something like:
tags
--- title: Hello World 👋 date: "2019-06-11T08:38:00.000Z" tags: design, random ---
And then create a new route, similar to blog/index, but to filter posts by tag:
blog/index
/blog/tag/[slug].svelte /blog/tag/[slug].json.js
The text was updated successfully, but these errors were encountered:
To output the tags as an array from the front matter you should format like this:
--- title: Hello World 👋 date: "2019-06-11T08:38:00.000Z" tags: - design - random ---
Sorry, something went wrong.
No branches or pull requests
I'm thinking we could add a new
tags
front-matter variable to filter posts by tag, something like:And then create a new route, similar to
blog/index
, but to filter posts by tag:The text was updated successfully, but these errors were encountered: