]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blob - wradmin/templates/master.html
98a82aaec31fab5c4e44a20d917b557d70a4ffb2
[philipp/winterrodeln/wradmin.git] / 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('/style.css')}" />
13     <link rel="shortcut icon" href="${h.url('/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('/titlebanner.png')}" alt="Winterrodeln Administration"/></h1>
20
21 <ul id="mainmenu">
22     <li><a href="${h.url(controller='rodelbahn', action='index')}">Übersicht</a></li>
23     <li><a href="${h.url(controller='rodelbahn', action='list')}">Rodelbahnen</a></li>
24     <li><a href="${h.url(controller='bericht', action='list')}">Rodelbahnberichte</a></li>
25     <li><a href="${h.url(controller='gasthaus', action='list')}">Gasthäuser</a></li>
26 </ul>
27
28 <div py:for="message in get_flashed_messages()" class="flash">$message</div>
29
30 <div id="content">
31 ${select('*|text()')}
32 </div>
33
34 <div id="footer"><img src="${h.url('/philipp_spitzer.png')}" alt="Philipp Spitzer"/></div>
35 </body>
36
37 </html>