Merge pull request #671 from kvch/custom-404

Custom 404 message - fixes #317
This commit is contained in:
Adam Tauber 2016-08-27 22:08:58 +02:00 committed by GitHub
commit 3043c404e4
6 changed files with 38 additions and 0 deletions

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 %}