layout fixes
[copyspeak.git] / src / copyspeak / templates / 404.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block title %}{% trans "Page not found" %}{% endblock %}
5
6 {% block body %}
7
8
9 <div class="text-page-wrapper">
10 <article class="text-page">
11
12 <h1>{% trans "Page not found" %}</h1>
13
14 <p>
15     {% trans "The page you were looking for doesn't exist." %}
16 </p>
17
18
19 </article>
20 </div>
21
22 {% endblock %}