27 lines
769 B
PHP
27 lines
769 B
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Bratonien Adventskalender</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="shared/css/style.css">
|
|
|
|
</head>
|
|
<body>
|
|
<?php include __DIR__ . '/includes/header.html'; ?>
|
|
|
|
<main>
|
|
<h1>🎄 Bratonien Adventskalender</h1>
|
|
<p>Willkommen im Adventskalender-Archiv von Bratonien.</p>
|
|
<section class="year-list">
|
|
<ul>
|
|
<li><a href="2025/">📅 Kalender 2025 öffnen</a></li>
|
|
<!-- <li><a href="2026/">📅 Kalender 2026 (in Planung)</a></li> -->
|
|
</ul>
|
|
</section>
|
|
</main>
|
|
|
|
<?php include __DIR__ . '/includes/footer.html'; ?>
|
|
<script src="/shared/js/header.js" defer></script>
|
|
</body>
|
|
</html>
|