Neue Seite /mitmachen, die offene Ehrenamtsstellen aus data/mitmachen.json als position-card-Komponente listet, mit clientseitigem Bereichsfilter (position-filter.js, progressive enhancement) und JobPosting-Schema (job_posting_schema(), employmentType VOLUNTEER). Route ergänzt. Enthält zudem kleine person-card__contact-Stilanpassungen (gleiche CSS-Sektion). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01HGzc6GhWhmLJt1jC2q1SRZ
92 lines
4.2 KiB
PHP
92 lines
4.2 KiB
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
/**
|
||
* Mitmachen & Ehrenamt — „Stellenbörse" für ehrenamtliche Helfer.
|
||
* Struktur: Hero → Stellen (position-card je Stelle) → CTA-Band → FAQ.
|
||
* Inhalte: data/mitmachen.json. Ansprechpartner: data/ansprechpartner.json (Single Source).
|
||
* Je Stelle ein JobPosting-Knoten (helpers: job_posting_schema) im $meta['schema']
|
||
* → GEO/semantisches SEO, verknüpft via #club mit dem Organization-Knoten.
|
||
*/
|
||
$page = json_load('mitmachen');
|
||
|
||
// Ansprechpartner nach Namen indexieren (Single Source: ansprechpartner.json).
|
||
$directory = [];
|
||
foreach (json_load('ansprechpartner')['persons'] ?? [] as $p) {
|
||
$directory[$p['name']] = $p;
|
||
}
|
||
// Pro Stelle: inline contact bevorzugt, sonst Lookup über contact_name.
|
||
$contact_for = static function (array $pos) use ($directory): ?array {
|
||
if (!empty($pos['contact']) && is_array($pos['contact'])) {
|
||
return $pos['contact'];
|
||
}
|
||
return $directory[$pos['contact_name'] ?? ''] ?? null;
|
||
};
|
||
|
||
$meta = [
|
||
'title' => 'Mitmachen & Ehrenamt',
|
||
'description' => 'Werde ehrenamtlicher Helfer beim TSV 1908 Kulmbach: Jugendtrainer, Betreuer und Unterstützung bei Veranstaltungen. Offene Aufgaben mit direktem Ansprechpartner – ohne Vorerfahrung.',
|
||
'og_image' => 'img/pages/jugendfussball-hero-1440.jpg',
|
||
'scripts' => ['position-filter.js'],
|
||
'schema' => array_merge(
|
||
page_schema(
|
||
[
|
||
['name' => 'Startseite', 'slug' => ''],
|
||
['name' => 'Mitmachen', 'slug' => 'mitmachen'],
|
||
],
|
||
$page['faq'] ?? []
|
||
),
|
||
array_values(array_filter(array_map(
|
||
static fn (array $job): array => job_posting_schema($job, 'mitmachen'),
|
||
$page['positions'] ?? []
|
||
)))
|
||
),
|
||
];
|
||
|
||
component('hero', ['hero' => $page['hero']]);
|
||
?>
|
||
<section class="section positions" id="stellen" aria-labelledby="positions-heading">
|
||
<div class="container">
|
||
<h2 id="positions-heading" class="visually-hidden">Offene Stellen</h2>
|
||
<?php if (!empty($page['filters'])): ?>
|
||
<div class="filter-bar" role="group" aria-label="Stellen nach Bereich filtern" data-position-filter>
|
||
<?php foreach ($page['filters'] as $i => $f): ?>
|
||
<button type="button" class="filter-bar__tab" data-filter="<?= e($f['value']) ?>" aria-pressed="<?= $i === 0 ? 'true' : 'false' ?>"><?= e($f['label']) ?></button>
|
||
<?php endforeach; ?>
|
||
</div>
|
||
<?php endif; ?>
|
||
<div class="positions__list" data-position-list>
|
||
<?php foreach ($page['positions'] as $pos): ?>
|
||
<?php component('position-card', ['position' => $pos, 'contact' => $contact_for($pos)]); ?>
|
||
<?php endforeach; ?>
|
||
</div>
|
||
<p class="positions__empty" data-position-empty hidden>In diesem Bereich sind aktuell keine Stellen ausgeschrieben. Schau bald wieder vorbei – oder sprich uns einfach <a href="<?= e(url('') . '#kontakt') ?>">direkt an</a>, wir finden gemeinsam eine passende Aufgabe.</p>
|
||
</div>
|
||
</section>
|
||
<?php if (!empty($page['arguments']['items'])): ?>
|
||
<section class="section sponsor-arguments" id="warum-mithelfen" aria-labelledby="warum-heading">
|
||
<div class="container">
|
||
<h2 id="warum-heading"><?= e($page['arguments']['title']) ?></h2>
|
||
<?php if (!empty($page['arguments']['intro'])): ?>
|
||
<p class="sponsor-arguments__intro"><?= e($page['arguments']['intro']) ?></p>
|
||
<?php endif; ?>
|
||
<ul class="sponsor-arguments__grid" role="list">
|
||
<?php foreach ($page['arguments']['items'] as $arg): ?>
|
||
<li class="sponsor-arguments__item">
|
||
<div class="sponsor-arguments__icon" aria-hidden="true"><?= icon($arg['icon']) ?></div>
|
||
<div class="sponsor-arguments__body">
|
||
<h3 class="sponsor-arguments__title"><?= e($arg['title']) ?></h3>
|
||
<p class="sponsor-arguments__text"><?= e($arg['text']) ?></p>
|
||
</div>
|
||
</li>
|
||
<?php endforeach; ?>
|
||
</ul>
|
||
</div>
|
||
</section>
|
||
<?php endif; ?>
|
||
<?php
|
||
component('cta-band', ['band' => $page['cta'], 'anchor' => 'kontakt-mitmachen']);
|
||
|
||
component('faq', ['faq' => $page['faq'] ?? []]);
|