I have a frontpage which is modular in nature, but not in setup, meaning that I display posts from specific taxonomies through loops in twig to get the following structure (Taxonomy: Limit):
- Featured: 3
- Series: 1
- Featured: 3
- News: 18
- Featured: 5
This works well enough when taxonomies are categories, as I can redirect to category-pages like /featured/ or /series/.
However, all posts also have tags. Per the usual Grav setup a tag is accessible as /tag:TAG, but because the frontpage does not use collections this has no effect. Also, even if it did use collections this modular display of posts would not work well with the tag-filtering.
Can I route /tag:TAG to display a different template? For example, posts tagged with winterand summer would display as a category-page (which is a template) but without the page-structure set up (the categories all have folders with child pages).