movmaker-webui/404.php
2026-06-04 08:06:23 +02:00

51 lines
1.2 KiB
PHP

<?php
date_default_timezone_set('Europe/Copenhagen');
if (!function_exists('h')) {
function h($s){ return htmlspecialchars((string)$s, ENT_QUOTES, "UTF-8"); }
}
$siteHeaderTitle = 'Multiple Voices Log';
$brandUrl = '404.php';
http_response_code(404);
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>404 — MVLog</title>
<meta name="robots" content="noindex,nofollow">
<link rel="stylesheet" href="style.css?v=20260531u">
<style>
.not-found-card{
max-width:680px;
margin:0 auto;
background:rgba(27,30,34,.92);
backdrop-filter:blur(2px);
border-radius:.8rem;
padding:1.25rem 1.25rem 1.4rem;
box-shadow:0 2px 16px #0006;
text-align:center
}
.not-found-card h2{
font-size:1.8rem;
margin:.1rem 0 .9rem
}
.not-found-card p{
font-size:1.05rem;
line-height:1.55;
margin:.55rem 0
}
</style>
</head>
<body>
<?php include __DIR__ . '/_header.php'; ?>
<main>
<section class="not-found-card" aria-labelledby="not-found-title">
<h2 id="not-found-title">404 — Not found</h2>
<p>The narrator claimed he knew where he was going.</p>
<p>The narrator is unreliable.</p>
</section>
</main>
<?php include __DIR__ . '/_footer.php'; ?>
</body>
</html>