19 lines
471 B
PHP
19 lines
471 B
PHP
|
|
<?php
|
|||
|
|
|
|||
|
|
declare(strict_types=1);
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* Damenmannschaft (Damenfußball). Inhalt: data/teams.json → damen.
|
|||
|
|
*/
|
|||
|
|
$slug = 'fussball/damen';
|
|||
|
|
$team = json_load('teams')['damen'];
|
|||
|
|
|
|||
|
|
$meta = [
|
|||
|
|
'title' => 'Damenmannschaft – Damenfußball Kulmbach',
|
|||
|
|
'description' => $team['hero']['text'],
|
|||
|
|
'og_image' => $team['hero']['image']['base'] . '-1600.jpg',
|
|||
|
|
'schema' => team_schema($team, $slug),
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
component('team', ['team' => $team, 'slug' => $slug]);
|