mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-08-30 12:46:57 +00:00
23 lines
630 B
HTML
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 }}
|