]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blob - wradmin/wradmin/templates/master.html
4134cbcd270faae5faa0eaf0a2f320ecbf5f50b8
[philipp/winterrodeln/wradmin.git] / wradmin / wradmin / templates / master.html
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3                       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml"
5     xmlns:py="http://genshi.edgewall.org/"
6     xmlns:xi="http://www.w3.org/2001/XInclude"
7     py:strip="True">
8
9 <head py:match="head" py:attrs="select('@*')">
10     <meta content="text/html; charset=UTF-8" http-equiv="content-type" />
11     <meta name="robots" content="noindex, nofollow" />
12     <link rel="stylesheet" type="text/css" media="screen" href="${h.url_for('/style.css')}" />
13     <link rel="shortcut icon" href="${h.url_for('/favicon.png')}" />
14     <meta py:replace="select('*|text()')" />
15 </head>
16
17
18 <body py:match="body" py:attrs="select('@*')">
19 <h1 id="header"><img src="${h.url_for('/titlebanner.png')}" alt="Winterrodeln Administration"/></h1>
20
21 <ul id="mainmenu">
22     <li><a href="${h.url_for(controller='rodelbahn', action='index')}">Übersicht</a></li>
23     <li><a href="${h.url_for(controller='rodelbahn', action='list')}">Rodelbahnen</a></li>
24     <li><a href="${h.url_for(controller='bericht', action='list')}">Rodelbahnberichte</a></li>
25     <li><a href="${h.url_for(controller='gasthaus', action='list')}">Gasthäuser</a></li>
26     <li><a href="${h.url_for(controller='maptool', action='index')}">Map-Tool</a></li>
27 </ul>
28
29 <div py:if="session.has_key('flash')" class="${session.pop('flashclass', 'flash')}">${session.pop('flash')}<?python session.save() ?></div>
30
31 <div id="content">
32 ${select('*|text()')}
33 </div>
34
35 <div id="footer"><img src="${h.url_for('/philipp_spitzer.png')}" alt="Philipp Spitzer"/></div>
36 </body>
37
38 </html>