List pages with a specific tag

I’ve been looking for a way to automatically show specific pages (not posts) in a list. I’ve looked at #get, but according to the docs it’s limited to posts, tags and authors.

Any specific reason why this can’t query pages? Or are pages a special post in this case?

@Jesse_Houwing pages are posts with the page: true param set so you should be able to use that in your get helper, eg:

{{#get "posts" filter="page:true"}}...{{/get}}
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.