aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/default/errors
diff options
context:
space:
mode:
authorEdmund von der Burg <evdb@mysociety.org>2011-04-15 17:49:04 +0100
committerEdmund von der Burg <evdb@mysociety.org>2011-04-15 17:49:50 +0100
commit49d6b2900ccc63b8c6c8022399b663b426fe9641 (patch)
treeb4487c2968fffaefe2f3bb3d778777a1452993fb /templates/web/default/errors
parent898d7c6f5f4c38ca2dd19df5c8a80ee222820130 (diff)
Add 410 page
Diffstat (limited to 'templates/web/default/errors')
-rw-r--r--templates/web/default/errors/page_error_410_gone.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/web/default/errors/page_error_410_gone.html b/templates/web/default/errors/page_error_410_gone.html
new file mode 100644
index 000000000..c4d5035d8
--- /dev/null
+++ b/templates/web/default/errors/page_error_410_gone.html
@@ -0,0 +1,20 @@
+[% INCLUDE 'header.html', title => loc('Page Gone') %]
+
+<h1>[%loc('Page Gone') %]</h1>
+
+[% IF error_msg %]
+ <p class="error">[% error_msg | html %]</p>
+[% END %]
+
+<p>
+ [%
+ tprintf(
+ loc("The requested URL '%s' is no longer available"),
+ c.req.uri
+ )
+ %]
+</p>
+
+[% # FIXME - add more helpful suggestions to this page %]
+
+[% INCLUDE 'footer.html' %]