# HG changeset patch # User Goffi # Date 1488752747 -3600 # Node ID abd55d94f82b2bb9330fd054e40136863df9a843 # Parent b13a26d55c6496063d6875fcee67d6de9c6eb202 error: added basic base and 404 templates diff -r b13a26d55c64 -r abd55d94f82b default/error/404.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/default/error/404.html Sun Mar 05 23:25:47 2017 +0100 @@ -0,0 +1,6 @@ +{% extends 'error/base.html' %} + +{% block body %} +

Not Found

+

Sorry, we can't find the resource you are trying to access.

+{% endblock body %} diff -r b13a26d55c64 -r abd55d94f82b default/error/base.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/default/error/base.html Sun Mar 05 23:25:47 2017 +0100 @@ -0,0 +1,7 @@ +{% extends 'base/base.html' %} + +{% block title %}Error {{error_code}}{% endblock %} +{% block body %} +An error occured while trying to access the resource. +{% endblock body %} +{% block footer %}{% endblock %}