templates/master.html
author terom
Sat, 22 Dec 2007 19:19:05 +0000
changeset 17 adde6ad8731e
parent 12 c2d8e9a754a1
child 23 10841abbc01f
permissions -rw-r--r--
moved css/cgi files to a seperate www/ dir
<?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>