header > nav : show all site listed children
All checks were successful
Deploy / Deploy to Production (push) Successful in 5s

This commit is contained in:
isUnknown 2026-06-22 13:33:13 +02:00
parent c0118d891e
commit 231b2fda69

View file

@ -17,7 +17,7 @@
</div>
<nav>
<ul>
<?php foreach ($site->children()->listed()->without($page) as $navItem): ?>
<?php foreach ($site->children()->listed() as $navItem): ?>
<li><a href="<?= $navItem->url() ?>"><?= $navItem->title() ?></a></li>
<?php endforeach ?>
</ul>