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