All checks were successful
Deploy Production / Deploy to Production (push) Successful in 28s
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>
13 lines
426 B
PHP
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>
|