add 404 and 500 templates
This commit is contained in:
parent
39f075e2a3
commit
811fbf702b
9
bornhack/templates/404.html
Normal file
9
bornhack/templates/404.html
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
<p class="lead">
|
||||||
|
404 page not found. Sorry about that.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
{% endblock %}
|
9
bornhack/templates/500.html
Normal file
9
bornhack/templates/500.html
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
<p class="lead">
|
||||||
|
500 internal server error. Sorry about that. The people responsible have been notified.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
{% endblock %}
|
Loading…
Reference in a new issue