cookiecutter-django/{{cookiecutter.repo_name}}/{{cookiecutter.project_name}}/templates/404.html

9 lines
250 B
HTML
Raw Normal View History

2013-08-16 14:55:43 +04:00
{% raw %}{% extends "base.html" %}
2013-08-16 14:55:43 +04:00
{% block title %}Page Not found{% endblock %}
2013-08-16 14:55:43 +04:00
{% block page_title %}Page Not found{% endblock page_title %}
2013-08-16 14:55:43 +04:00
{% block content %}
<p>This is not the page you were looking for.</p>
2013-08-16 14:55:43 +04:00
{% endblock content %}{% endraw %}