19 lines
601 B
PHP
19 lines
601 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
/**
|
||
* Vereinshistorie — schmaler Hero + interaktive Timeline.
|
||
* Inhalte: data/historie.json (Single Source of Truth).
|
||
*/
|
||
$historie = json_load('historie');
|
||
|
||
$meta = [
|
||
'title' => 'Vereinshistorie – Der Katzbachtaler Weg',
|
||
'description' => 'Erlebe die bewegte Geschichte des TSV 08 Kulmbach – von den ersten Spielen an der Bayreuther Straße 1947 bis zur Hans-Rausch-Sportanlage im Katzbachtal.',
|
||
'scripts' => ['timeline.js'],
|
||
];
|
||
|
||
component('hero', ['hero' => $historie['hero']]);
|
||
component('timeline', ['events' => $historie['events']]);
|