15 lines
330 B
HTML
15 lines
330 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Page not found{% endblock title %}
|
|
|
|
{% block content %}
|
|
<section id="404">
|
|
<div class="section">
|
|
<h1>Page not found</h1>
|
|
<p>Or as the machines like to say it: <code>404</code>.</p>
|
|
<br />
|
|
<a href="/" class="button arrow">Home Page</a>
|
|
</div>
|
|
</section>
|
|
{% endblock content %}
|