Hey I’m working with the plain kit and try to make a menu for the subfolders of my Chapters folder:
<ul>
<?php foreach ($site->children()->listed() as $item): ?>
<li><a href="<?= $item->url() ?>"><?= $item->title() ?></a></li>
<?php endforeach ?>
</ul>
Right now it is only fetching the Chapters folder instead its subfolders…
Thank you in advance!