blob: b7b09610be87c45632ebdc8f3aca921a1a16198f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 %}
|