Graphite/website/templates/404.html
2022-12-18 21:35:46 -08:00

12 lines
286 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>
<br />
<a href="/" class="link arrow">Home Page</a>
</div>
</section>
{% endblock content %}