Added basic 404 and 500 error pages.

This commit is contained in:
Isaac Bythewood
2012-04-27 02:54:42 +00:00
parent cd53e3ff1d
commit 740e26c2ad
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{% extends 'core/base.html' %}
{% block title %}404{% endblock %}
{% block yield %}
<div class="container">
<div class="row">
<div id="form" class="span6 offset3">
<h1>404</h1>
<p>This page does not exist.</p>
</div>
</div>
</div>
{% endblock %}

View File

@@ -0,0 +1,17 @@
{% extends 'core/base.html' %}
{% block title %}500{% endblock %}
{% block yield %}
<div class="container">
<div class="row">
<div id="form" class="span6 offset3">
<h1>500</h1>
<p>Something went wrong! If you figure out what it was please
submit an issue on Pinry's
<a href="https://github.com/overshard/pinry/issues">GitHub Issue's page</a>.</p>
</div>
</div>
</div>
{% endblock %}