summaryrefslogtreecommitdiff
path: root/website/templates/404.html
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2025-05-16 23:11:08 +0200
committermo8it <mo8it@proton.me>2025-05-16 23:11:08 +0200
commit7ec698696537aac4433bb0e60fb10310a6b34bc1 (patch)
tree310e862b2502241d20a70433d125c80d5721722e /website/templates/404.html
parent74ab9924b4193c0fb66f3c0e3667a4d7b4edfb18 (diff)
Add templates
Diffstat (limited to 'website/templates/404.html')
-rw-r--r--website/templates/404.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/website/templates/404.html b/website/templates/404.html
new file mode 100644
index 0000000..ecee207
--- /dev/null
+++ b/website/templates/404.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+
+{% import "macros.html" as macros %}
+
+{% block content %}
+ <div class="flex flex-col mx-auto text-center">
+ <h1>DON'T PANIC!</h1>
+ <h2>404: Page not found!</h2>
+
+ <img class="max-h-[50vh]"
+ src="{{ get_url(path='images/panic.svg') | safe }}"
+ alt="">
+
+ {{ macros::btn(link=get_url(path="/") , content="Back to the homepage") }}
+ </div>
+{% endblock %}