Faisal Ashfaq
Faisal Ashfaq

Reputation: 2678

How to fetch content of pages having specific template?

I want to fetch content of contenttype pages which are using a template page_with_sidebar.twig?

How do I do that?

e.g

{% setcontent a = 'pages' [some filter here to retrieve specific templated pages] %}

Upvotes: 0

Views: 89

Answers (1)

Ben
Ben

Reputation: 36

{% setcontent side_pages = 'pages' where { template: 'page_with_sidebar.twig' } %}

Upvotes: 2

Related Questions