10 lines
171 B
HTML
10 lines
171 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block title %} Not Found {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
The requested {{ descriptor or 'page' }} could not be found.
|
|
|
|
{% endblock %}
|