Files
micromdm/ui/includes/500.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

14 lines
383 B
Cheetah

{{ define "title"}}
<title>Internal Server Error</title>
{{ end }}
{{ define "content" }}
<div class="error-page">
{{ with .siteName }}<h1>{{.}}</h1>{{ end }}
<h2>500 Internal Server Error</h2>
<p>
You encountered an unknown error. We are looking into it. <a href="/">Return</a>
{{ with .trace_id }}<p>Error ID: {{.}}</p>{{ end }}
</p>
</div>
{{ end }}