mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-12-02 22:44:09 +03:00
9 lines
250 B
HTML
9 lines
250 B
HTML
{% raw %}{% extends "base.html" %}
|
|
|
|
{% block title %}Page Not found{% endblock %}
|
|
|
|
{% block page_title %}Page Not found{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
<p>This is not the page you were looking for.</p>
|
|
{% endblock content %}{% endraw %} |