sites/irclogs.qmsk.net/templates/layout.tmpl
author Tero Marttila <terom@fixme.fi>
Sun, 08 Feb 2009 02:29:23 +0200
branchsites
changeset 42 5a72c00c4ae4
child 43 fc11c4e86a82
permissions -rw-r--r--
more fiddling around with the irclogs layout/css, add query args to URL
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<%def name="menu()">

</%def>

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <title>irclogs.qmsk.net ${('::' + channel.title) if channel else ''}</title>
        <link rel="Stylesheet" type="text/css" href="${req.site_root}/static/irclogs.css" />
    </head>
    <body>
        <div id="menu">
            ${self.menu()}
        </div>

        <div id="content">
            ${next.body()}
        </div>

        <div id="footer">
            <div id="footer-left">
            </div>
            
            <div id="footer-center">
                ${h.validation_notice(req.site_host)}
            </div>
        </div>
    </body>
</html>