This commit is contained in:
Asaf Gartner 2024-06-23 16:51:06 +03:00
parent 81cb17b6eb
commit f29f697841
1 changed files with 7 additions and 9 deletions

View File

@ -1,13 +1,11 @@
{{ template "base.html" . }}
{{ template "base-2024.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 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 }}