world-game/site/templates/default.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
370 B
PHP

<?php snippet('header') ?>
<div id="ssr-content">
<?php snippet('ssr/nav') ?>
<main>
<h1><?= $page->title() ?></h1>
<?php foreach ($page->body()->toBlocks() as $block): ?>
<?php if ($block->type() === 'text'): ?>
<?= $block->content()->text()->value() ?>
<?php endif ?>
<?php endforeach ?>
</main>
</div>
<?php snippet('footer') ?>