Hi all,
I’ve been reading about routes, following previous discussions on the topic and I can’t seem to find a solution for what I’m after.
I want to show in a single view (route) a list of both posts and pages that have a given private tag. I have done this by coding a custom template that is assigned to my route, but when I try to further filter that list by other tags (primary), I don’t know how to pass the information to my template.
In my custom template I am using the Ghost API to fetch both posts and pages because I need them to be properly sorted by date (e.g., they can be interleaved, so I can’t just query first posts and then pages and output that, which I already had done without the API). Now what I need to do is to add a filter to further refine the list by a number of tags that would be defined by the route.
In routes.yaml I can’t find any way to make it work. I have tried:
/test/:
template: pagepost
data:
posts:
type: browse
resource: posts
filter: "tag:otherTag"
pages:
type: browse
resource: pages
filter: "tag:otherTag"
Then read in my custom pagepost.hbs the filter data like this:
const filterTag = “{{@data.posts.filter}}” || “”;
This returns always an empty string.
I have tried also these other approaches (separately):
/test/:
template: pagepost
filter: 'tag:otherTag'
/test/:
template: pagepost
filter: tag.otherTag
/test/:
template: pagepost
data: tag:otherTag
But I can’t read nothing from @data
or @tag
or anything in my custom template.
I could just create 5 different templates and have the filter done directly in the query, but it seems overkill (and bad practice) to replicate templates when there might be a proper mechanism to pass a variable to this custom template. This is what I struggle with: is there no way to programatically access these variables from the custom template? I read in the docs that I can, for example, do in routes:
data: tag.myTag
And access the data in my template as:
{{@tag}}
<h2>{{ slug }}</h2>
{{/tag}}
But I just get empty text.
I am sorry if this has been asked already or if it should be clear… I just can’t get this to work at all.
Thank you all!