changeset 72:32d7286adfa5

stub for 404 page
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 23 Aug 2012 22:03:47 -0700
parents 94298e137131
children 12ee37017538
files decoupage/templates/HTTPNotFound.html
diffstat 1 files changed, 14 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/decoupage/templates/HTTPNotFound.html	Thu Aug 23 22:03:47 2012 -0700
@@ -0,0 +1,14 @@
+<!DOCTYPE html
+    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+      xmlns:py="http://genshi.edgewall.org/"
+      xmlns:xi="http://www.w3.org/2001/XInclude">
+  <!-- basic index of files -->
+  <head>
+    <xi:include href="head.html"/>
+  </head>
+  <body>
+    <xi:include py:if="include" href="${include}"/>
+  </body>
+</html>