2023-05-30 12:07:39 +00:00
|
|
|
{% 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:39:08 +00:00
|
|
|
src="{{ get_url(path='images/404/bot.svg') | safe }}"
|
|
|
|
alt="">
|
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>
|
2023-05-30 12:07:39 +00:00
|
|
|
{% endblock %}
|