29 lines
837 B
PHP
29 lines
837 B
PHP
|
|
<?php
|
|||
|
|
|
|||
|
|
declare(strict_types=1);
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* Startseite — Sektions-Reihenfolge wie auf der alten Seite:
|
|||
|
|
* Hero → Aktuelles (Instagram) → Historie → Sportheim → Zahlen → Partner → Kontakt.
|
|||
|
|
* Inhalte: data/home.json (Single Source of Truth).
|
|||
|
|
*/
|
|||
|
|
$home = json_load('home');
|
|||
|
|
|
|||
|
|
$meta = [
|
|||
|
|
'title' => 'TSV 08 Kulmbach – Fußball & Turnen in Kulmbach',
|
|||
|
|
'title_absolute' => true,
|
|||
|
|
'description' => json_load('club')['description'],
|
|||
|
|
'scripts' => ['form.js'],
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
component('hero', ['hero' => $home['hero']]);
|
|||
|
|
component('instagram-feed');
|
|||
|
|
|
|||
|
|
foreach ($home['sections'] as $section) {
|
|||
|
|
component('section', ['section' => $section]);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
component('stats', ['stats' => $home['stats']]);
|
|||
|
|
component('partner-grid', ['intro' => $home['partners']]);
|
|||
|
|
component('contact-form', ['intro' => $home['contact']]);
|