Graphite/website/templates/404.html
James Lindsay 32f5fba3e3 Blog post: Graphite progress report (Q2 2024) (#1805)
* Q2 blogpost

* WIP

* WIP 2

---------

Co-authored-by: Keavon Chambers <keavon@keavon.com>
2024-08-02 06:14:29 -07:00

17 lines
367 B
HTML

{% extends "base.html" %}
{%- block head -%}
{%- set title = "Page not found" -%}
{%- endblock head -%}
{%- block content -%}
<section id="404">
<div class="block">
<h1>Page not found</h1>
<p>Or "<code>404</code>", as the machines like to say it.</p>
<p>
<a href="/" class="button arrow">Return home</a>
</p>
</div>
</section>
{%- endblock content -%}