14 lines
428 B
HTML
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 %}
|