I have a set of tags in my posts.
For example in posts/somepost.md
:
---
name: Some Post
tags: ["tag_a", "tag_b"]
---
I would like to render pages based on the tags dynamically. Like: tags/tag_a.html
, tags/tag_b.html
, etcetera. Of course, the content of those pages will contain the posts with those tags.
How is this called in Jekyll, and/or what would be a workaround to achieve this?