I’m looking for a way to get all posts and pages with one single {{#get}} helper. Is this possible?
On the home page of my Ghost blog, I’d like to show all posts and pages with a certain tag. Something to the effect of:
{{#get "posts, pages" filter="tag:home" limit="all" as |article|}}
{{#foreach article}}
{{> post-card}}
{{/foreach}}
{{/get}}