mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-14 13:36:40 +03:00
10 lines
246 B
HTML
10 lines
246 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Page not found{% endblock %}
|
|
|
|
{% 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 %}
|