Remove macros

This commit is contained in:
mo8it
2025-05-17 19:53:30 +02:00
parent b4a6b87e24
commit 2f700991f3
6 changed files with 40 additions and 54 deletions
+2 -4
View File
@@ -1,16 +1,14 @@
{% 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]"
<img class="max-h-[50vh] mx-auto"
src="{{ get_url(path='images/panic.svg') | safe }}"
alt="">
{{ macros::btn(link=get_url(path="/") , content="Back to the homepage") }}
<a class="text-2xl font-bold" href="{{ get_url(path='/') }}">Back to homepage</a>
</div>
{% endblock %}