1
0
Fork 0
yinghong-massage.de/templates/404.html

15 lines
426 B
HTML
Raw Normal View History

{% extends "base.html" %}
2023-05-30 23:11:17 +00:00
{% import "macros.html" as macros %}
2022-10-24 14:35:18 +00:00
{% block content %}
2023-05-30 23:11:17 +00:00
<div class="flex flex-col mx-auto text-center">
<h1>Page not found!</h1>
2022-10-24 14:35:18 +00:00
2023-05-30 23:11:17 +00:00
<img class="mb-5 max-h-[50vh]"
2023-11-22 01:28:18 +00:00
src="{{ get_url(path='images/404/bot.svg') | safe }}">
2022-10-24 14:35:18 +00:00
2023-05-30 23:11:17 +00:00
<div class="flex justify-center">{{ macros::btn(link=get_url(path='/') , text="Zurück zur Startseite") }}</div>
2022-10-24 14:35:18 +00:00
</div>
{% endblock %}