sites/irclogs.qmsk.net/templates/layout.tmpl
changeset 46 185504387370
parent 45 e94ab812c0c8
child 47 3d59c9eeffaa
equal deleted inserted replaced
45:e94ab812c0c8 46:185504387370
     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
       
     2 
       
     3 <%def name="menu()">
       
     4 
       
     5 </%def>
       
     6 
       
     7 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
       
     8     <head>
       
     9         <title>irclogs.qmsk.net ${('::' + channel.title) if channel else ''}</title>
       
    10         <link rel="Stylesheet" type="text/css" href="${req.site_root}/static/irclogs.css" />
       
    11     </head>
       
    12     <body>
       
    13         <div id="menu">
       
    14             ${self.menu()}
       
    15         </div>
       
    16 
       
    17         <div id="content">
       
    18             ${next.body()}
       
    19         </div>
       
    20 
       
    21         <div id="footer">
       
    22             <div id="footer-left">
       
    23             </div>
       
    24             
       
    25             <div id="footer-center">
       
    26                 <!-- ${h.validation_notice(req.site_host)} -->
       
    27             </div>
       
    28         </div>
       
    29     </body>
       
    30 </html>
       
    31