mirror of
https://github.com/django/django.git
synced 2024-11-18 07:26:04 +00:00
52f5c949e9
git-svn-id: http://code.djangoproject.com/svn/django/trunk@92 bcc190cf-cafb-0310-a4f2-bffc1f526a37
12 lines
199 B
HTML
12 lines
199 B
HTML
{% extends "base_site" %}
|
|
|
|
{% block title %}Page not found{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>Page not found</h2>
|
|
|
|
<p>We're sorry, but the requested page could not be found.</p>
|
|
|
|
{% endblock %}
|