templates/master.html
changeset 12 c2d8e9a754a1
child 23 10841abbc01f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/master.html	Fri Dec 21 20:36:03 2007 +0000
@@ -0,0 +1,22 @@
+<?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>