blob: fd17cf662bfac68c185ed973e1559e36b1b3876a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{{ define "header" }}
{{ template "header-navbar" . }}
{{ end }}
{{ define "content" }}
<header class="container">
{{ template "navbar" . }}
<h1>{{ .Get "Page Not Found" }}</h1>
</header>
<main class="container">
<p>
{{ .Get "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 {Email:e}."
(map "Email" "mail@euro-cash.eu") }}
</p>
</main>
{{ end }}
|