17 lines
360 B
HTML
17 lines
360 B
HTML
{% extends "base.html" %}
|
|
|
|
{%- block head -%}
|
|
{%- set title = "Page not found" -%}
|
|
{%- endblock head -%}
|
|
|
|
{%- block content -%}
|
|
<section id="404">
|
|
<div class="section">
|
|
<h1>Page not found</h1>
|
|
<p>Or as the machines like to say it: <code>404</code>.</p>
|
|
<br />
|
|
<a href="/" class="button arrow">Home Page</a>
|
|
</div>
|
|
</section>
|
|
{%- endblock content -%}
|