legit/templates/404.html

14 lines
210 B
HTML
Raw Normal View History

2022-12-12 15:23:44 +00:00
{{ define "404" }}
2022-12-11 05:52:47 +00:00
<html>
<title>404</title>
2022-12-12 15:23:44 +00:00
{{ template "head" . }}
2022-12-11 05:52:47 +00:00
<body>
2022-12-17 07:16:09 +00:00
{{ template "nav" . }}
<main>
<h3>404 &mdash; nothing like that here.</h3>
</main>
2022-12-11 05:52:47 +00:00
</body>
2022-12-17 07:16:09 +00:00
2022-12-11 05:52:47 +00:00
</html>
2022-12-12 15:23:44 +00:00
{{ end }}