]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blob - wradmin/templates/master.html
index.html now uses jinja2 master.html.
[philipp/winterrodeln/wradmin.git] / wradmin / templates / master.html
1 <!doctype html>
2 <html>
3
4 <head>
5     {% block head %}
6     <title>{% block title %}{% endblock %}</title>
7     <meta content="text/html; charset=UTF-8" http-equiv="content-type" />
8     <meta name="robots" content="noindex, nofollow" />
9     <link rel="stylesheet" type="text/css" media="screen" href="{{url_for('static', filename='style.css')}}" />
10     <link rel="shortcut icon" href="{{url_for('static', filename='favicon.png')}}" />
11     {% endblock %}
12 </head>
13
14
15 <body>
16 <h1 id="header"><img src="{{url_for('static', filename='titlebanner.png')}}" alt="Winterrodeln Administration"/></h1>
17
18 <ul id="mainmenu">
19     <li><a href="{{url_for('index')}}">Übersicht</a></li>
20     <li><a href="{{url_for('rodelbahn_list')}}">Rodelbahnen</a></li>
21     <li><a href="{{url_for('bericht_list')}}">Rodelbahnberichte</a></li>
22     <li><a href="{{url_for('gasthaus_list')}}">Gasthäuser</a></li>
23 </ul>
24
25 {% with messages = get_flashed_messages() %}
26 {% for message in messages %}
27 <div class="flash">{{message}}</div>
28 {% endfor %}
29 {% endwith %}
30
31 <div id="content">
32 {% block content %}
33 {% endblock %}
34 </div>
35
36 <div id="footer"><img src="{{url_for('static', filename='philipp_spitzer.png')}}" alt="Philipp Spitzer"/></div>
37 </body>
38
39 </html>