Hi folks, I’ve had an issue I’ve been trying to resolve with my hosted ghost install. I have a setup where I had posts of the tag “journal” from the main page and display them on the tag collection page using a custom routes yaml. This works great. Now what I’d like to do is use the two different Post feed layouts available in the solo theme to apply to each differently. So for the main index i’d use the “Parallax” post feed layout, and for tag pages I’d use the “Typographic” post feed layout. Is this possible? Here’s the current routes:
collections:
/:
permalink: /{slug}/
template: index
filter: "tag:-journal"
/journal/:
permalink: /journal/{slug}/
template: blog
filter: "tag:journal"
taxonomies:
tag: /tag/{slug}/
author: /author/{slug}/