Files
micromdm/ui/includes/404.tmpl
Victor Vrantchan c71958384e build a simple web framework. (#691)
Added the basics for HTML templates, serving assets and so on.
2020-07-17 12:41:33 -04:00

12 lines
232 B
Cheetah

{{ define "title"}}
<title>Not Found</title>
{{ end }}
{{ define "content" }}
<div class="error-page">
<h2>404 Not Found</h2>
<p>
The page you're looking for is not here. <a href="/">Return</a>
</p>
</div>
{{ end }}