25 lines
1.0 KiB
HTML
25 lines
1.0 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/WIAILogo.png" alt="Fachschaft WIAI" class="logo"/>
|
|
<h1>Sorting is Fun! The Importance of Being Sorted</h1>
|
|
</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('form') %} class="active" {% endif %}><a href="{{ url_for('form') }}">Formular</a></li>
|
|
<li {% if request.path == url_for('answers') %} class="active" {% endif %}><a href="{{ url_for('answers') }}">Meine Antworten</a></li>
|
|
</ul>
|
|
</nav>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|