summaryrefslogtreecommitdiffstats
path: root/app/templates/404.html
blob: 87e2575c5812fd4f73692b209737dbe1915b77e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "_layout.html" %}
{% block body %}
<h2>Fehler 404 - Seite nicht gefunden</h2>

<dl>
  <dt>Code</dt>
  <dd>{{error.code}}</dd>

  <dt>Beschreibung</dt>
  <dd>{{error.description|safe}}</dd>
</dl>

<p>
  <a href="{{url_for('main.index')}}">zur Startseite</a>
</p>
{% endblock %}