33 lines
1.7 KiB
HTML
33 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}">
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<img src="static/images/wiai_logo.png" alt="Fachschaft WIAI" align="right" class="logo" />
|
|
<img src="static/images/sortierhut/sortierhut_standard.png" alt="Sortierhut" class="logo" />
|
|
</header>
|
|
<nav>
|
|
<ul>
|
|
<li {% if request.path == url_for('index') %} class="active" {% endif %}><a href="{{ url_for('index') }}">Home</a></li>
|
|
<li {% if request.path == url_for('questions') %} class="active" {% endif %}><a href="{{ url_for('questions') }}">Jetzt sortiert werden</a></li>
|
|
<li {% if request.path == url_for('access_answers') %} class="active" {% endif %}><a href="{{ url_for('access_answers') }}">Meine Antworten</a></li>
|
|
<li {% if request.path == url_for('submit_solution') %} class="active" {% endif %}><a href="{{ url_for('submit_solution') }}">Lösung einreichen</a></li>
|
|
<li {% if request.path == url_for('houses') %} class="active" {% endif %}><a href="{{ url_for('houses') }}">Häuser</a></li>
|
|
<li {% if request.path == url_for('reveal_solution') %} class="active" {% endif %}><a href="{{ url_for('reveal_solution') }}">AUFLÖSUNG</a></li>
|
|
</ul>
|
|
</nav>
|
|
{% block content %}
|
|
{% endblock %}
|
|
<footer>
|
|
<p></p>
|
|
<p></p>
|
|
<p>© Fachschaft WIAI aamma & smartin & asauer 2019</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|