add custom 404 page

This commit is contained in:
Noemi Vanyi 2016-08-24 19:53:09 +02:00
parent 104cdb7d03
commit 0056c4035e
6 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{% extends "courgette/base.html" %}
{% block content %}
<div class="center">
<h1>{{ _('Page not found') }}</h1>
<p>{{ _('Go to <a href="/">search page</a>.') }}</p>
</div>
{% endblock %}

View file

@ -0,0 +1,7 @@
{% extends "default/base.html" %}
{% block content %}
<div class="center">
<h1>{{ _('Page not found') }}</h1>
<p>{{ _('Go to <a href="/">search page</a>.') }}</p>
</div>
{% endblock %}

View file

@ -0,0 +1,7 @@
{% extends "oscar/base.html" %}
{% block content %}
<div class="text-center">
<h1>{{ _('Page not found') }}</h1>
<p>{{ _('Go to <a href="/">search page</a>.') }}</p>
</div>
{% endblock %}

View file

@ -0,0 +1,7 @@
{% extends "pix-art/base.html" %}
{% block content %}
<div class="center">
<h1>{{ _('Page not found') }}</h1>
<p>{{ _('Go to <a href="/">search page</a>.') }}</p>
</div>
{% endblock %}