Is there an example of how to filter by a toggle input?
my blueprint is like this:
toggle:
label: Toggle
width: 1/3
type: toggle
text: Include in overview?
the posts should be filtered
<section class="masonry">
<?php foreach ($pages->template('post') as $item) : ?>
<figure class="masonry-item">
<a href="<?= $item->url() ?>">
<?= $item->images()->sortBy('sort', 'asc')->first()->resize(400) ?>
</a>
</figure>
<?php endforeach ?>
</section>