13 lines
210 B
HTML
13 lines
210 B
HTML
{{ define "404" }}
|
|
<html>
|
|
<title>404</title>
|
|
{{ template "head" . }}
|
|
<body>
|
|
{{ template "nav" . }}
|
|
<main>
|
|
<h3>404 — nothing like that here.</h3>
|
|
</main>
|
|
</body>
|
|
|
|
</html>
|
|
{{ end }}
|