blob: 76ef3aee72c55138e0b8f40d4b3cd7c9680b0cd4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "base.html" %}
{% block content %}
<div class="page-header">
<h1>Page Not Found</h1>
</div>
<div class="alert alert-error">
<strong>Whoops!</strong> I could not find the page you requested.
</div>
{% endblock content %}
|