Files
Bratonien-Adventskalender/adventskalender/shared/content/custom_404.php
2025-11-25 20:50:35 +01:00

38 lines
1.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Seite nicht gefunden 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 $_SERVER['DOCUMENT_ROOT'] . '/adventskalender/includes/header.html'; ?>
<main style="text-align:center; padding:4rem 1rem;">
<h1>❄️ 404 Diese Tür existiert nicht</h1>
<p style="margin-top:1rem; font-size:1.2rem;">
Entweder hat sich jemand im Datum vertan<br>
oder ein Wichtel hat die Seite versteckt.
</p>
<p style="margin-top:2rem;">
<a href="/" class="btn" style="
display:inline-block;
padding:0.75rem 1.5rem;
background:#8573fb;
color:white;
border-radius:8px;
text-decoration:none;
font-size:1.1rem;">
🔙 Zurück zum Adventskalender
</a>
</p>
</main>
<?php include $_SERVER['DOCUMENT_ROOT'] . '/adventskalender/includes/footer.html'; ?>
<script src="/shared/js/header.js" defer></script>
</body>
</html>