apps/kepler/templates/404.html 256 B raw
1
{{define "404.html"}}{{template "base.html" .}}{{end}}
2
{{define "title"}}not found — {{.SiteName}}{{end}}
3
{{define "content"}}
4
<div class="error-page">
5
    <h1>Not found</h1>
6
    <p class="empty">The requested resource does not exist.</p>
7
</div>
8
{{end}}