templates/layout.tmpl
author Tero Marttila <terom@fixme.fi>
Sat, 07 Feb 2009 04:57:22 +0200
changeset 26 9d3beac1b196
parent 21 b05979822dee
child 27 2acfbbe14226
permissions -rw-r--r--
remove foo.html page, and rice up the footer a bit
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<%def name="render_menu(open_page, page, items, ancestry)">
<ul>
% for pi in items :
    <li>
        <a href="${site_page_url}/${pi.url}"${' class="selected-page"' if pi == open_page else ''}>${pi.title} ${'&raquo;' if pi.children and pi.parent else ''}</a>
    % if pi in ancestry and pi.children and pi.parent :
        ${render_menu(page, pi, pi.children, ancestry)}
    % endif
    </li>
% endfor
</ul>
</%def>

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <title>qmsk.net :: ${page.title}</title>
        <link rel="Stylesheet" type="text/css" href="${site_root_url}/static/style.css" />
    </head>
    <body>
            <div id="header">
                <a href="${site_page_url}/">QMSK.NET</a>
            </div>
            
            <div id="container">
                <div id="nav">
                    ${render_menu(menu.page, menu.page, menu.items, menu.ancestry)}
                </div>

                <div id="content">
                    ${page.content}
                </div>
                
            </div>

            <div id="footer">
                <div id="footer-right">
                    Page Modified ${page.modified} <br/>
                    Current time ${h.now()}
                </div>
               
                <div id="footer-left">
                    &copy; 2009 Tero Marttila
                </div>
                
                <div id="footer-center">
                    Validated <a href="http://validator.w3.org/check?uri=www.qmsk.net">XHTML 1.0 Strict</a> &amp; <a href="http://jigsaw.w3.org/css-validator/validator?uri=www.qmsk.net">CSS 2.1</a>
                </div>
            </div>
    </body>
</html>