hibiscus/pages/error/404.html

19 lines
514 B
HTML
Raw Normal View History

2024-10-07 16:04:39 +03:00
{{- define "404" -}}
2024-03-15 18:34:24 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-03-27 11:51:33 +03:00
<link rel="icon" type="image/x-icon" href="/public/favicon.ico">
<link rel="stylesheet" href="/public/main.css">
<title>Error 404</title>
2024-03-15 18:34:24 +03:00
</head>
<body>
<main>
<h1>Error 404 - Not Found</h1>
2024-10-07 16:04:39 +03:00
<p>{{ translatableText "error.404" }}</p>
<p><a href="/">{{ translatableText "error.prompt" }}</a></p>
2024-03-15 18:34:24 +03:00
</main>
</body>
2024-10-07 16:04:39 +03:00
</html>
{{ end }}