File size: 367 Bytes
2409829 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
{% 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 -%}
|