1
0
Fork 0
yinghong-massage.de/templates/404.html
2023-11-22 02:28:18 +01:00

14 lines
426 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 %}