Add basic error pages

This commit is contained in:
Adam Shimali
2016-01-07 15:48:29 +00:00
parent afd03ea5bf
commit d64e3b81fb
4 changed files with 41 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
{% extends "admin_template.html" %}
{% block page_title %}Page Not Found{% endblock %}
{% block fullwidth_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1>404</h1>
<p>Sorry, that page doesn't exist.</p>
</div>
</div>
{% endblock %}