- og:image:alt (Seitentitel) in meta.php — Social-/AI-Cards + A11y - areaServed (Kulmbach + Landkreis Kulmbach) am SportsClub-JSON-LD-Knoten - WebSite-Knoten auf der Startseite via neuem Helper website_schema(), publisher -> #club - Explizite, Kulmbach-haltige Team-Descriptions (<=155 Zeichen) statt roher Hero-Texte (zweite-mannschaft war 214 Zeichen und wurde im Snippet abgeschnitten) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
19 lines
644 B
PHP
19 lines
644 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' => 'Die erste Herrenmannschaft des TSV 08 Kulmbach spielt auf Kreisklasse-Niveau – ambitioniert und mit echtem Vereinsgeist. Komm vorbei und spiel mit.',
|
||
'og_image' => $team['hero']['image']['base'] . '-1600.jpg',
|
||
'schema' => team_schema($team, $slug),
|
||
];
|
||
|
||
component('team', ['team' => $team, 'slug' => $slug]);
|