Different post feed layouts in Solo

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}/

You’re going to need to edit the theme to make another template, I think, since right now the theme uses a theme variable for deciding what post feed layout to use everywhere.

Thanks Cathy! Am I right in thinking this isn’t possible with ghost pro because it doesn’t allow theme editing?

Ghost Pro’s starter plan doesn’t allow theme editing. All the other plans do.