sites/www.qmsk.net/templates/layout.tmpl
changeset 46 185504387370
parent 45 e94ab812c0c8
child 47 3d59c9eeffaa
--- a/sites/www.qmsk.net/templates/layout.tmpl	Sun Feb 08 03:13:11 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,56 +0,0 @@
-<!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="${req.page_prefix}/${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 ${' :: ' + h.breadcrumb(menu.ancestry, links=False) if menu.ancestry else ''}</title>
-        <link rel="Stylesheet" type="text/css" href="${req.site_root}/static/style.css" />
-    </head>
-    <body>
-            <div id="header">
-                <a href="${req.page_prefix}/">QMSK.NET</a>
-            </div>
-            
-            <div id="container">
-                <div id="nav">
-                    ${render_menu(menu.page, menu.page, menu.items, menu.ancestry)}
-                </div>
-
-                <div id="content">
-                    <div id="breadcrumb">
-                        <!-- ${h.breadcrumb(menu.ancestry)} -->
-                    </div>
-                    ${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; ${h.copyright_year()} Tero Marttila
-                </div>
-                
-                <div id="footer-center">
-                    ${h.validation_notice(req.site_host)}
-                </div>
-            </div>
-    </body>
-</html>
-