view decoupage/templates/HTTPNotFound.html @ 73:12ee37017538

introduce templated 404s; works, just doesnt do anything yet
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 23 Aug 2012 23:19:07 -0700
parents 32d7286adfa5
children
line wrap: on
line source

<!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">
  <head>
    <xi:include href="head.html"/>
  </head>
  <body>
    <xi:include py:if="include" href="${include}"/>
    <div id="HTTPNotFound">
      <h1>404 Not Found</h1>
    </div>
  </body>
</html>