23 lines
477 B
PHP
23 lines
477 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Master-Shell. Erwartet: $meta (array), $content (string), $current (Slug der aktiven Route).
|
||
|
|
*/
|
||
|
|
?>
|
||
|
|
<!doctype html>
|
||
|
|
<html lang="de">
|
||
|
|
<head>
|
||
|
|
<?php component('meta', ['meta' => $meta, 'current' => $current]); ?>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<a class="skip-link" href="#main">Zum Inhalt springen</a>
|
||
|
|
<?php component('header', ['current' => $current]); ?>
|
||
|
|
<main id="main">
|
||
|
|
<?= $content ?>
|
||
|
|
</main>
|
||
|
|
<?php component('footer'); ?>
|
||
|
|
</body>
|
||
|
|
</html>
|