blob: d4071bc1ee0d6edfc30b1209771eeacbcc1c7195 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{% extends 'base.html' %}
{% block pagetitle %}404 Not Found{% endblock %}
{% block main_section %}
<section class="main-section">
<article>
<h2>The page you are looking for was not found.</h2>
<p>Please use the links on the left to navigate to your desired destination.</p>
</article>
</section>
{% endblock %}
|