6 lines
164 B
HTML
6 lines
164 B
HTML
{% extends "layout.html" %}
|
|
{% block page_title %}Not Found (404){% endblock %}
|
|
{% block body %}
|
|
{{ super() }}
|
|
The resource can not be found.
|
|
{% endblock %} |