mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 14:18:04 +08:00
13 lines
286 B
HTML
13 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 %}
|