templates/layout.tmpl
changeset 50 f13cf27a360b
parent 48 7858b7b8ffe3
child 59 8ec729c5d998
--- a/templates/layout.tmpl	Sun Feb 08 04:59:22 2009 +0200
+++ b/templates/layout.tmpl	Mon Feb 09 00:24:13 2009 +0200
@@ -4,6 +4,10 @@
 
 </%def>
 
+<%def name="footer_right()">
+
+</%def>
+
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
     <head>
         <title>irclogs.qmsk.net${(' :: ' + channel.title) if channel else ''}</title>
@@ -11,7 +15,7 @@
     </head>
     <body>
         <div id="menu">
-            ${self.menu()}
+            ${next.menu()}
         </div>
 
         <div id="content">
@@ -19,11 +23,16 @@
         </div>
 
         <div id="footer">
-            <div id="footer-left">
+            <div id="footer-right">
+                ${next.footer_right()}
             </div>
-            
+
+            <div id="footer-left">
+
+            </div>
+
             <div id="footer-center">
-                <!-- ${h.validation_notice(req.site_host)} -->
+                ${h.validation_notice(req.site_host)}
             </div>
         </div>
     </body>