06b57d8a952517f1d2d6418747caca49a8df0532
[wolnelektury.git] / src / wolnelektury / templates / 404.html
1 {% extends request.EXPERIMENTS.layout.value|yesno:"2022/base_simple.html,base/base.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 %}