2023-05-30 12:07:39 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2022-10-24 14:35:18 +00:00
|
|
|
{% block content %}
|
|
|
|
<div class="container text-center">
|
|
|
|
<h1 class="h1">Seite nicht gefunden</h1>
|
|
|
|
|
2022-12-17 17:27:49 +00:00
|
|
|
<img src="{{ get_url(path='images/404/bot.svg') }}"
|
|
|
|
class="img-fluid"
|
2023-05-30 12:07:39 +00:00
|
|
|
width="300" />
|
2022-10-24 14:35:18 +00:00
|
|
|
|
|
|
|
<div class="d-grid gap-2 pt-3">
|
2022-12-17 17:27:49 +00:00
|
|
|
<a class="btn btn-dark" href="{{ get_url(path='/') }}" role="button">Zurück zur Startseite</a>
|
2022-10-24 14:35:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-05-30 12:07:39 +00:00
|
|
|
{% endblock %}
|