Files
tsv08kulmbach-website/app/pages/historie.php

19 lines
601 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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']]);