Hi,
I use liebling theme. 6.42.0 Ghost version, I have ssh access.
I have a tag “blog” which I use to categorize some posts in its specific category/tag collection, I don’t want to show them inside index/home post collection.
I read documentation about get/has/is/filter and routes documentaiton, I tried a lot of different types exclusions with filter and routes but I can’t get to understand how to exlude my “blog” tag inside index.hbs.
Here is what is used in index.hbs:
{{#get "posts" filter="featured:true" include="authors,tags" limit="20" as |featured|}}
Here is my routes.yaml file :
routes:
collections:
/:
permalink: /{slug}/
template: index
taxonomies:
tag:
/tag/{slug}/
author: /author/{slug}/
What would you advise me to do ?
I also want to show post date only in my “blog” tag collection page, not inside other tag collections pages, but here also I got stuck because of some logical stuff I didn’t understand with helpers.
Thanks a bunch for all the awesome work on Ghost <3