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