world-game/site/snippets/ssr/nav.php
isUnknown 459fadf0a4
All checks were successful
Deploy Production / Deploy to Production (push) Successful in 28s
seo : inject semantic html in kirby templates for bot indexing
Each page template now renders its content in a visually-hidden #ssr-content
div (sr-only technique) so search engine crawlers see real HTML without
impacting the Svelte app layout. Shared snippets handle nav, footer contact
info, and article cards.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19 15:24:40 +02:00

13 lines
426 B
PHP

<?php
$homePage = $site->find('home');
$navPages = $homePage
? $site->pages()->listed()->prepend($homePage->id(), $homePage)
: $site->pages()->listed();
?>
<nav aria-label="Navigation principale">
<ul>
<?php foreach ($navPages as $navPage): ?>
<li><a href="<?= $navPage->url() ?>"<?= $navPage->is($page) ? ' aria-current="page"' : '' ?>><?= $navPage->title() ?></a></li>
<?php endforeach ?>
</ul>
</nav>