mirror of
https://github.com/Hopiu/django.git
synced 2026-05-20 21:21:51 +00:00
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 %}
|