summaryrefslogtreecommitdiffhomepage
path: root/template/error.templ
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 /template/error.templ
parenta1d809960bee74df19c7e5fc34ffd1e4757cfdcb (diff)
Migrate away from templ and towards html/template
Diffstat (limited to 'template/error.templ')
-rw-r--r--template/error.templ24
1 files changed, 0 insertions, 24 deletions
diff --git a/template/error.templ b/template/error.templ
deleted file mode 100644
index d2fed83..0000000
--- a/template/error.templ
+++ /dev/null
@@ -1,24 +0,0 @@
-package template
-
-import (
- "net/http"
- "strconv"
-
- "git.thomasvoss.com/euro-cash.eu/lib"
-)
-
-templ Error(status int) {
- {{ p := ctx.Value("printer").(lib.Printer) }}
- <header>
- @navbar()
- <h1>{ strconv.Itoa(status) } { http.StatusText(status) }</h1>
- </header>
- <main>
- <p>
- { p.T("If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.") }
- </p>
- <p>
- @templ.Raw(p.T("If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.", contactEmail))
- </p>
- </main>
-}