1
0
Fork 0
yinghong-massage.de/templates/404.html
2023-05-31 01:11:17 +02:00

14 lines
428 B
HTML

{% extends "base.html" %}
{% import "macros.html" as macros %}
{% block content %}
<div class="flex flex-col mx-auto text-center">
<h1>Page not found!</h1>
<img class="mb-5 max-h-[50vh]"
src="{{ get_url(path='images/404/bot.svg') | safe }}" />
<div class="flex justify-center">{{ macros::btn(link=get_url(path='/') , text="Zurück zur Startseite") }}</div>
</div>
{% endblock %}