summaryrefslogtreecommitdiffhomepage
path: root/src/templates/404.html.tmpl
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-09-13 13:01:48 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-09-13 13:01:48 +0200
commit548090e67f66acf84385c4152ca464e52d3e3319 (patch)
tree9b6de528bd7b0aa63362fa83f5c8e6a97f68a5d8 /src/templates/404.html.tmpl
parenta1d809960bee74df19c7e5fc34ffd1e4757cfdcb (diff)
Migrate away from templ and towards html/template
Diffstat (limited to 'src/templates/404.html.tmpl')
-rw-r--r--src/templates/404.html.tmpl11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/templates/404.html.tmpl b/src/templates/404.html.tmpl
new file mode 100644
index 0000000..3771a0f
--- /dev/null
+++ b/src/templates/404.html.tmpl
@@ -0,0 +1,11 @@
+{{ 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 }}