12 lines
303 B
HTML
12 lines
303 B
HTML
{{ template "base-2024.html" . }}
|
|
|
|
{{ define "content" }}
|
|
<div class="mw6 ph3 pv3 center post-content">
|
|
<h2>
|
|
Hi there, {{ if .User }}{{ .User.Name }}{{ else }}visitor{{ end }}!
|
|
</h2>
|
|
<div>We couldn't find what you were looking for:</div>
|
|
<a href="{{ .Wanted }}">{{ .Wanted }}</a>
|
|
</div>
|
|
{{ end }}
|