diff --git a/bornhack/templates/404.html b/bornhack/templates/404.html new file mode 100644 index 00000000..b15561b1 --- /dev/null +++ b/bornhack/templates/404.html @@ -0,0 +1,9 @@ +{% extends 'base.html' %} + +{% block content %} + +

+ 404 page not found. Sorry about that. +

+ +{% endblock %} diff --git a/bornhack/templates/500.html b/bornhack/templates/500.html new file mode 100644 index 00000000..4a9ce4c7 --- /dev/null +++ b/bornhack/templates/500.html @@ -0,0 +1,9 @@ +{% extends 'base.html' %} + +{% block content %} + +

+ 500 internal server error. Sorry about that. The people responsible have been notified. +

+ +{% endblock %}