apps/easel/templates/error.html 261 B raw
1
{{define "error.html"}}{{template "base.html" .}}{{end}}
2
{{define "title"}}Easel — {{.Title}}{{end}}
3
{{define "content"}}
4
  <div class="error-page">
5
    <h2>{{.Title}}</h2>
6
    <p>{{.Message}}</p>
7
    <p><a href="/">← back to today</a></p>
8
  </div>
9
{{end}}