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')}}" />
16 <h1 id="header"><img src="{{url_for('static', filename='titlebanner.png')}}" alt="Winterrodeln Administration"/></h1>
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 {% if current_user.is_authenticated %}
24 <li><a href="{{url_for('logout')}}">Logout</a></li>
26 <li><a href="{{url_for('login')}}">Login</a></li>
30 {% with messages = get_flashed_messages() %}
31 {% for message in messages %}
32 <div class="flash">{{message}}</div>
41 <div id="footer"><img src="{{url_for('static', filename='philipp_spitzer.png')}}" alt="Philipp Spitzer"/></div>