20 lines
515 B
HTML
20 lines
515 B
HTML
{% extends "base.tera.html" %}
|
|
{% block content %}
|
|
<div class="container text-center">
|
|
<h1 class="h1">Seite nicht gefunden</h1>
|
|
|
|
<img
|
|
src="{{ get_url(path='images/404/bot.svg') }}"
|
|
class="img-fluid"
|
|
width="300"
|
|
/>
|
|
|
|
<div class="d-grid gap-2 pt-3">
|
|
<a
|
|
class="btn btn-dark"
|
|
href="/"
|
|
role="button"
|
|
>Zurück zur Startseite</a>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|