forked from Ruderverein-Donau-Linz/rowt
[TASK] add footer and make app mobile compatible
This commit is contained in:
parent
9c42f99f11
commit
5f82b8a786
@ -3,6 +3,7 @@
|
||||
<!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" />
|
||||
</head>
|
||||
@ -14,6 +15,11 @@
|
||||
<div class="flex min-h-screen items-center justify-center px-4 py-12 sm:px-6 lg:px-8">
|
||||
{% block content %}{% endblock content %}
|
||||
</div>
|
||||
|
||||
{%if loggedin_user %}
|
||||
{% include "includes/footer" %}
|
||||
{%endif%}
|
||||
|
||||
<script src="/public/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
10
templates/includes/footer.html.tera
Normal file
10
templates/includes/footer.html.tera
Normal file
@ -0,0 +1,10 @@
|
||||
<footer class="bg-primary-950 text-white w-full flex justify-center p-3">
|
||||
<div class="max-w-screen-lg w-full flex justify-between">
|
||||
<div>
|
||||
Marie Birner <span class="text-[#ff0000]">♥</span> Philipp Hofer
|
||||
</div>
|
||||
<div>
|
||||
© {{ now() | date(format="%Y") }}
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
Loading…
x
Reference in New Issue
Block a user