Files
2025-12-22 12:43:18 -06:00

23 lines
630 B
HTML

{{ define "404" }}
<!DOCTYPE html>
<html lang="en">
<head>
<title>404 - Lost at Sea | ATCR</title>
{{ template "head" . }}
</head>
<body>
{{ template "nav-simple" . }}
<main class="error-page">
<div class="error-content">
<i data-lucide="anchor" class="error-icon"></i>
<div class="error-code">404</div>
<h1>Lost at Sea</h1>
<p>The page you're looking for has drifted into uncharted waters.</p>
<a href="/" class="btn btn-primary">Return to Port</a>
</div>
</main>
<script>lucide.createIcons();</script>
</body>
</html>
{{ end }}