hmn/src/templates/src/404.html

14 lines
306 B
HTML

{{ template "base.html" . }}
{{ define "content" }}
<div class="description">
<p>
<span class="big">Hi there, {{ if .User }}{{ .User.Name }}{{ else }}visitor{{ end }}!</span>
</p>
<p>
<span class="big">We couldn't find what you were looking for:</span><br />
{{ .Wanted }}
</p>
</div>
{{ end }}