37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
{% import "includes/macros" as macros %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="manifest" href="public/manifest.json"/>
|
|
<link rel="stylesheet" href="/public/main.css"/>
|
|
<link rel="icon" type="image/x-icon" href="/public/images/favicon.ico">
|
|
<title>Ruderassistent - ASKÖ Ruderverein Donau Linz</title>
|
|
</head>
|
|
<body class="bg-gray-100">
|
|
{% if loggedin_user %}
|
|
{{ macros::header(loggedin_user=loggedin_user) }}
|
|
{% endif %}
|
|
{% if show_kiosk_header %}
|
|
<a href="/log">Ausfahrt eintragen</a>
|
|
<a href="/log/show">Logbuch</a>
|
|
<a href="/stat">Statistik</a>
|
|
<a href="/boatdamage">Bootsschaden</a>
|
|
{% endif %}
|
|
|
|
<div class="flex min-h-screen {%if not loggedin_user %} items-center {% else %} items-start {% endif %} justify-center px-4 py-12 sm:px-6 lg:px-8"> {% block content %}{% endblock content %}
|
|
</div>
|
|
|
|
{% if loggedin_user %}
|
|
{% include "includes/footer" %}
|
|
{% endif %}
|
|
|
|
{% include "dynamics/sidebar" %}
|
|
|
|
<script src="/public/main.js"></script>
|
|
</body>
|
|
</html>
|
|
</body>
|
|
</html>
|