10 lines
165 B
HTML
10 lines
165 B
HTML
{% extends 'layout.html' %}
|
|
{% block body %}
|
|
|
|
<h1>Page Not Found</h1>
|
|
{% if error is defined %}
|
|
<h4>{{ error.description }}</h4>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|