b2bc74c2cc3682f68a1ea38aebf8fbd9afb43371
[wolnelektury.git] / src / wolnelektury / templates / 404.html
1 {% extends "base_simple.html" %}
2 {% load i18n %}
3
4 {% block settings %}
5   {% load title %}
6   {% trans "Page does not exist" as title %}
7   {% title title %}
8 {% endblock %}
9
10
11 {% block titleextra %}404 – {% trans "Page does not exist" %}{% endblock %}
12
13
14 {% block body %}
15   <h1>{% trans "Page not found" %}</h1>
16
17   <p class="normal-text">
18     {% trans "We are sorry, but this page does not exist. Please check if you entered correct address or go to "%}
19     <a href="/">{% trans "main page" %}</a>.
20   </p>
21 {% endblock body %}