templates/master.html
changeset 12 c2d8e9a754a1
child 23 10841abbc01f
equal deleted inserted replaced
11:27dac27d1a58 12:c2d8e9a754a1
       
     1 <?xml version="1.0" encoding="UTF-8" ?>
       
     2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
       
     3   "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
       
     4 
       
     5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
       
     6   <head>
       
     7     <title>${title}</title>
       
     8     <link rel="Stylesheet" type="text/css" href="${stylesheet_url}" />
       
     9   </head>
       
    10   <body>
       
    11     <div id="breadcrumb">
       
    12 % for (( bc_url, bc_title), is_first) in h.iter_is_first(breadcrumb) :
       
    13 %   if not is_first :
       
    14         &raquo;
       
    15 %   endif
       
    16         <a href="${bc_url}">${bc_title}</a>
       
    17 % endfor
       
    18     </div>
       
    19     ${next.body()}
       
    20     <p id="about"><a href="http://marttila.de/~terom/degal/">DeGAL</a> ${version}</p>
       
    21   </body>
       
    22 </html>