<!doctype html>
-<html>
+<html lang="de">
<head>
{% block head %}
+ <meta charset="utf-8" />
<title>{% block title %}{% endblock %}</title>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" />
<meta name="robots" content="noindex, nofollow" />
<li><a href="{{url_for('rodelbahn_list')}}">Rodelbahnen</a></li>
<li><a href="{{url_for('bericht_list')}}">Rodelbahnberichte</a></li>
<li><a href="{{url_for('gasthaus_list')}}">Gasthäuser</a></li>
+ {% if current_user.is_authenticated %}
+ <li><a href="{{url_for('logout')}}">Logout</a></li>
+ {% else %}
+ <li><a href="{{url_for('login')}}">Login</a></li>
+ {% endif %}
</ul>
{% with messages = get_flashed_messages() %}