35 lines
1.3 KiB
PHP
35 lines
1.3 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Turnen → Fitness & Pilates. Inhalt: data/turnen.json
|
||
|
|
* (disciplines.fitness-pilates). Struktur: Hero → Kurse/Zeiten → CTA.
|
||
|
|
*
|
||
|
|
* Hieß bis 31.07.2026 „Step Aerobic, Fitness & Pilates" unter dem Slug
|
||
|
|
* turnen/step-aerobic-fitness-pilates. Step Aerobic findet nicht mehr statt
|
||
|
|
* (Rückmeldung der Turnabteilung), die Gruppe ist aus data/turnen.json entfernt —
|
||
|
|
* Pilates und Fitness & Stretching bei Karola Lorz laufen weiter. Der alte Slug
|
||
|
|
* leitet per 301 hierher (public/.htaccess).
|
||
|
|
*/
|
||
|
|
$slug = 'turnen/fitness-pilates';
|
||
|
|
$d = json_load('turnen')['disciplines']['fitness-pilates'];
|
||
|
|
|
||
|
|
$meta = [
|
||
|
|
'title' => 'Fitness & Pilates in Kulmbach',
|
||
|
|
'description' => 'Ausdauer, Kräftigung und Beweglichkeit für Erwachsene: Fitness und Pilates beim TSV 08 Kulmbach in der Max-Hundt-Schule. Zeiten und Kontakt.',
|
||
|
|
'og_image' => 'img/pages/vereinsgelaende-1600.jpg',
|
||
|
|
'schema' => page_schema([
|
||
|
|
['name' => 'Startseite', 'slug' => ''],
|
||
|
|
['name' => 'Turnen', 'slug' => 'turnen'],
|
||
|
|
['name' => 'Fitness & Pilates', 'slug' => $slug],
|
||
|
|
]),
|
||
|
|
];
|
||
|
|
|
||
|
|
component('hero', ['hero' => $d['hero']]);
|
||
|
|
component('group-schedule', [
|
||
|
|
'groupsTitle' => 'Unsere Kurse',
|
||
|
|
'location' => $d['location'] ?? [],
|
||
|
|
'lead' => $d['lead'] ?? '',
|
||
|
|
'groups' => $d['groups'] ?? [],
|
||
|
|
]);
|