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')}}" />
17 <h1 id="header"><img src="{{url_for('static', filename='titlebanner.png')}}" alt="Winterrodeln Administration"/></h1>
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>
27 <li><a href="{{url_for('login')}}">Login</a></li>
31 {% with messages = get_flashed_messages() %}
32 {% for message in messages %}
33 <div class="flash">{{message}}</div>
42 <div id="footer"><img src="{{url_for('static', filename='philipp_spitzer.png')}}" alt="Philipp Spitzer"/></div>