blob: c86dc301a17c6629b58d2d20d54d901de7a93749 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{{ define "content" }}
<header>
{{ template "navbar" . }}
<h1>{{ .T "Page Not Found" }}</h1>
</header>
<main>
<p>
{{ .T `
The page you were looking for does not exist. If you believe this
is a mistake then don’t hesitate to contact @onetruemangoman on
Discord or email us at %s.`
`<a href="mailto:mail@euro-cash.eu">mail@euro-cash.eu</a>` | safe
}}
</p>
</main>
{{ end }}
|