15 lines
383 B
HTML
15 lines
383 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Page not found.{% endblock title %}
|
|
|
|
{% block content %}
|
|
<section id="404" class="section-row">
|
|
<div class="section">
|
|
<h1>Page not found (yet).</h1>
|
|
<p>
|
|
Some pages are still actively under construction. Please check back in a few days!
|
|
</p>
|
|
<a href="/" class="link arrow">Home Page</a>
|
|
</div>
|
|
</section>
|
|
{% endblock content %}
|