20 lines
598 B
PHP
20 lines
598 B
PHP
|
|
<?php
|
|||
|
|
|
|||
|
|
declare(strict_types=1);
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 2. Mannschaft (Herrenfußball). Inhalt: data/teams.json → zweite-mannschaft.
|
|||
|
|
*/
|
|||
|
|
$slug = 'fussball/zweite-mannschaft';
|
|||
|
|
$team = json_load('teams')['zweite-mannschaft'];
|
|||
|
|
|
|||
|
|
$meta = [
|
|||
|
|
'title' => '2. Mannschaft – Herrenfußball Kulmbach',
|
|||
|
|
'description' => $team['hero']['text'],
|
|||
|
|
'og_image' => $team['hero']['image']['base'] . '-1600.jpg',
|
|||
|
|
'scripts' => (count($team['contact_names'] ?? []) > 1) ? ['contact-slider.js'] : [],
|
|||
|
|
'schema' => team_schema($team, $slug),
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
component('team', ['team' => $team, 'slug' => $slug]);
|