Graphite/website/templates/404.html

15 lines
350 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</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 %}