blob: e17bfe8bbdcdc0b10a0d2e6168b7c5e347cb1c78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{%extends "base.html"%}
{%block title%}404: Page Not Found{%endblock%}
{%block pagetitle%}404: Could Not Find the Requested Page{%endblock%}
{%block content%}
<p>
The page "<strong>{{page}}</strong>" does not exist on this server.
</p>
{%endblock%}
|