12 lines
176 B
HTML
12 lines
176 B
HTML
|
{% extends "default" %}
|
||
|
|
||
|
{% block titlevariable %}
|
||
|
{% set title = "Not Found" %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content -%}
|
||
|
|
||
|
<h1 class="headline">404 Not Found</h1>
|
||
|
|
||
|
{%- endblock %}
|