mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
* Q2 blogpost * WIP * WIP 2 --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
17 lines
367 B
HTML
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 -%}
|