degal/templates/master.html
author Tero Marttila <terom@fixme.fi>
Wed, 03 Jun 2009 19:03:28 +0300
branchuse-distutils
changeset 41 3b1579a7bffb
parent 23 templates/master.html@10841abbc01f
child 62 53e798708413
permissions -rw-r--r--
reorganize files to move lib, templates, www into 'degal' package, keep separate 'cgi-bin' for now
<?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}" />
% if self.module.use_javascript :
    <script type="text/javascript" src="../javascript/prototype.js" />
    <script type="text/javascript" src="../javascript/scriptaculous.js" />
    <script type="text/javascript" src="../javascript/taggr.js" />
% endif
  </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>