42 lines
1.9 KiB
HTML
42 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<title>DualHub</title>
|
|
<link rel="stylesheet" type="text/css" href={{ url_for("static", filename="style.css") }}>
|
|
<meta http-equiv="refresh" content="510">
|
|
<script src={{ url_for("static", filename="motd.js") }}></script>
|
|
{% block head %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<ul>
|
|
{% if theorie=="hidden" and praxis=="hidden" %}
|
|
<li class="top"><a class="top" href={{ url_for("welcome", sel="theorie") }}>Theorie</a></li>
|
|
<li class="top"><a class="top" href={{ url_for("welcome", sel="praxis") }}>Praxis</a></li>
|
|
{% elif theorie == "hidden" %}
|
|
<li class="top"><a class="top" href={{ url_for("welcome", sel="theorie") }}>Theorie</a></li>
|
|
<li class="top selected"><a class="top selected" href={{ url_for("welcome", sel="praxis") }}>Praxis</a></li>
|
|
{% else %}
|
|
<li class="top selected"><a class="top selected" href={{ url_for("welcome", sel="theorie") }}>Theorie</a></li>
|
|
<li class="top"><a class="top" href={{ url_for("welcome", sel="praxis") }}>Praxis</a></li>
|
|
{% endif %}
|
|
<li {{ theorie }}><a {% if s == "n" %} class="selected" {% endif %} href={{ url_for("displayNoten") }}>Noten</a></li>
|
|
<li {{ theorie }}><a {% if s == "p" %} class="selected" {% endif %} href={{ url_for("displayRapla") }}>Stundenplan</a></li>
|
|
<li {{ praxis }}><a {% if s == "t" %} class="selected" {% endif %} href="">To Dos</a></li>
|
|
<li><a {% if s == "s" %} class="selected" {% endif %} href={{ url_for("redKurs") }}>Konfiguration</a></li>
|
|
{% if request.endpoint %}
|
|
{% if request.endpoint[:7] != "login" %}
|
|
<li><a class="bottom" href={{ url_for("logout") }}>Log-Out</a></li>
|
|
{% endif %}
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
|
|
<div class="cs1">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|