mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-15 22:27:05 +03:00
30e8506872
* Add djLint for HTML formatting and linting * Remove djLint pre-commit hook * Bump djLint from 1.31.0 to 1.31.1
15 lines
309 B
HTML
15 lines
309 B
HTML
{% raw %}{% 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 %}
|
|
{%- endraw %}
|