[BUGFIX] header menu logbook styling

This commit is contained in:
Marie Birner
2023-09-27 13:47:43 +02:00
committed by philipp
parent cf53fad5e6
commit c2e0c874ad
7 changed files with 34 additions and 35 deletions

View File

@ -10,17 +10,19 @@
<title>Ruderassistent - ASKÖ Ruderverein Donau Linz</title>
</head>
<body class="bg-gray-100">
{%if loggedin_user %}
{% if loggedin_user %}
{{ macros::header(loggedin_user=loggedin_user) }}
{%endif%}
{% 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 %}
{% if loggedin_user %}
{% include "includes/footer" %}
{%endif%}
{% endif %}
{% include "dynamics/sidebar" %}
<script src="/public/main.js"></script>
</body>
</html>