Add some error pages

This commit is contained in:
Michal Čihař 2012-03-05 15:39:08 +01:00
parent 56cf9d8d4a
commit 143376b950
2 changed files with 22 additions and 0 deletions

10
html/404.html Normal file
View File

@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block content %}
<h2>Page Not Found</h2>
<p>
The page you are looking for was not found.
</p>
{% endblock %}

12
html/500.html Normal file
View File

@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block content %}
<h2>Server Error</h2>
<p>
The server had serious problems while serving your request. We've just sent our
trained monkeys to fix the issue.
</p>
{% endblock %}