11 lines
324 B
HTML
11 lines
324 B
HTML
{% 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 %}
|