templates/404.html (view raw)
1{{ define "404" }} 2<!doctype html> 3<html> 4 <title>404</title> 5{{ template "head" . }} 6 <body> 7 {{ template "nav" . }} 8 <main> 9 <h3>404 — nothing like that here.</h3> 10 </main> 11 </body> 12 13</html> 14{{ end }}