Think to the kirby demo site and how “team” within about doesn’t have a template associated to it. I want to filter by this specific template so that I can add other templates/pages bellow the about page.
I have tried things like
<?php foreach($page->children()->visible()->filterBy('template', '==', 'team') as $member): ?>
<?php foreach($page->children()->visible() as $member): ?>
<?php if($member->filterBy('template', '==', 'team')): ?>
The first example outputs nothing, the second outputs everything despite me changing team to awards etc…
Can someone direct me in the right direction?