feat: legal links in page footer

This commit is contained in:
Björn Fromme
2026-02-16 09:09:28 +01:00
parent a22688c87e
commit ab67f9d7b5
3 changed files with 21 additions and 1 deletions
+16 -1
View File
@@ -13,7 +13,22 @@
{% block content %}{% endblock %}
</div>
</div>
{% block footer %}{% endblock %}
{% block footer %}
<div class="p-4 flex items-center space-x-4 text-white text-sm underline">
<a href="{{ legal_notice_url }}" target="_blank">
Impressum
</a>
<a href="{{ terms_and_conditions_url }}" target="_blank">
AGB
</a>
<a href="{{ privacy_policy_url }}" target="_blank">
Datenschutz
</a>
<button type="button" class="bg-transparent border-0 p-0 cursor-pointer" onclick="cookiefirst_show_settings(); return false">
Cookie-Einstellungen
</button>
</div>
{% endblock %}
</div>
{% include '_partials/_loading_indicator.html.twig' %}
</div>