templates/master.html
author terom
Wed, 16 Jan 2008 14:58:03 +0000
changeset 19 8d3ffd87cb0b
parent 12 c2d8e9a754a1
child 23 10841abbc01f
permissions -rw-r--r--
* move cgi-bin to de-cgi-bin so it doesn't conflict with my default alias... need to come up with a real solution to this
* refactored series/shorturl into the new codebase
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  <head>
    <title>${title}</title>
    <link rel="Stylesheet" type="text/css" href="${stylesheet_url}" />
  </head>
  <body>
    <div id="breadcrumb">
% for (( bc_url, bc_title), is_first) in h.iter_is_first(breadcrumb) :
%   if not is_first :
        &raquo;
%   endif
        <a href="${bc_url}">${bc_title}</a>
% endfor
    </div>
    ${next.body()}
    <p id="about"><a href="http://marttila.de/~terom/degal/">DeGAL</a> ${version}</p>
  </body>
</html>