diff options
Diffstat (limited to '')
-rw-r--r-- | templates/root.mako | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/templates/root.mako b/templates/root.mako deleted file mode 100644 index 19af96e..0000000 --- a/templates/root.mako +++ /dev/null @@ -1,56 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<html> - <head> - <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> - % if not w.ctx.is_mobile: - <%block name="js"> - <script type="text/javascript" src=${"/static/js/jquery-1.4.2.js" | url}></script> - <script type="text/javascript" src=${"/static/js/lib.js" | url}></script> - </%block> - % endif - <link rel="shortcut icon" href=${"/static/images/currency.png" | url} type="image/icon"> - <title><%block name="title">Kostenverwaltung</%block></title> - <%block name="style"> - <link href=${"/static/css/style.css" | url} rel="stylesheet" type="text/css" /> - </%block> - </head> - - <body> - <div id="wrapper"> - <div id="logo"> - <img src=${"/static/images/currency.png" | url} /> - <h1><a href=${"/" | url}>Kosten</a></h1> - <h2>» vom Nec</h2> - </div> - - <div id="header"> - <div id="menu"> - <%block name="menu"> - <%namespace file="menu.mako" name="m" /> - <ul> - % for uri, page in m.attr.menu: - <li><a href=${uri | url}>${page}</a></li> - % endfor - </ul> - </%block> - </div> - </div> - </div> - - <div id="page"> - <div class="content"> - ${next.body()} - </div> - <div style="clear: both;"></div> - </div> - <div id="footer"> - <%block name="footer"> - <p id="legal"> - powered by <a href="http://www.makotemplates.org">mako</a> & <a href="http://www.webpy.org">web.py</a> | - © 2010-2012. All Rights Reserved. René Neumann | - with the help of <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>. - </p> - </%block> - </div> - </body> -</html> |