Add templates

This commit is contained in:
mo8it
2025-05-16 23:11:08 +02:00
parent 74ab9924b4
commit 7ec6986965
11 changed files with 392 additions and 8 deletions
+16
View File
@@ -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 %}