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