summaryrefslogtreecommitdiff
path: root/src/templates/404.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/404.html')
-rw-r--r--src/templates/404.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/templates/404.html b/src/templates/404.html
new file mode 100644
index 0000000..b7b0961
--- /dev/null
+++ b/src/templates/404.html
@@ -0,0 +1,38 @@
+{% extends "base.html" %}
+
+{% block head %}
+{{ super() }}
+
+<style>
+#main {
+ display: flex;
+ flex-direction: column;
+ gap: 10px;
+ align-items: center;
+ justify-content: center;
+}
+
+span {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ max-width: 600px;
+}
+</style>
+{% endblock %}
+
+{% block content %}
+<img src="/static/assets/404.jpg" alt="http.cat for 404" height="300" />
+
+<span id="text">
+ <h1>I'm sorry I let you down...</h1>
+
+ {% if request.path == "/femboys" %}
+ <p>no bitches?</p>
+ {% else %}
+ <p>{{ request.path }} not found on the server! mayhaps you misspelt the url? (it happens to the best of us)</p>
+ {% endif %}
+</span>
+{% endblock %}