Files
Diarios-Oficiais-ALEMS/diarios_oficiais_alems/templates/404.html

14 lines
286 B
HTML
Raw Normal View History

2025-03-06 12:10:17 -03:00
{% extends "base.html" %}
{% block title %}Page not found{% endblock title %}
{% block content %}
<h1>Page not found</h1>
<p>
{% if exception %}
{{ exception }}
{% else %}
This is not the page you were looking for.
{% endif %}
</p>
{% endblock content %}