18 lines
550 B
PHP
18 lines
550 B
PHP
|
|
<?php
|
|||
|
|
|
|||
|
|
declare(strict_types=1);
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* Seitenkopf mit Logo und Navigation. Props: $current (Slug).
|
|||
|
|
*/
|
|||
|
|
$club = json_load('club');
|
|||
|
|
?>
|
|||
|
|
<header class="site-header">
|
|||
|
|
<div class="container site-header__inner">
|
|||
|
|
<a class="site-header__brand" href="<?= e(url()) ?>" aria-label="<?= e($club['name']) ?> – Startseite">
|
|||
|
|
<img class="site-header__logo" src="<?= e(asset('img/logo.svg')) ?>" alt="" width="75" height="97">
|
|||
|
|
</a>
|
|||
|
|
<?php component('nav', ['current' => $current]); ?>
|
|||
|
|
</div>
|
|||
|
|
</header>
|