mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 13:30:48 +00:00
12 lines
286 B
HTML
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 %}
|