routes.php enthält auch die fussball-Route (User-WIP, Seite existiert) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
18 lines
591 B
PHP
18 lines
591 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* EINZIGES Slug-Register der Seite (siehe CLAUDE.md).
|
|
* Slug => ['file' => Page-Datei in app/pages/, 'sitemap' => in sitemap.xml aufnehmen?]
|
|
*
|
|
* Neue Seite = Datei in app/pages/ + Eintrag hier (+ optional data/navigation.json).
|
|
* Canonical und Sitemap folgen automatisch.
|
|
*/
|
|
return [
|
|
'' => ['file' => 'home.php', 'sitemap' => true],
|
|
'fussball' => ['file' => 'fussball.php', 'sitemap' => true],
|
|
'historie' => ['file' => 'historie.php', 'sitemap' => true],
|
|
'404' => ['file' => '404.php', 'sitemap' => false],
|
|
];
|