Files
qivip/django/templates/base.html
2025-04-05 12:43:49 +02:00

22 lines
675 B
HTML

{% load static %}
<!DOCTYPE html>
<html lang="de">
<head>
<link rel="icon" type="image/png" href="{% static 'icons/favicon.png' %}">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{% static 'css/t-style.css' %}">
<title>qivip</title>
</head>
<body>
{% include 'partials/_nav.html' %}
<div class="flex flex-col h-screen overflow-x-hidden">
{% block content%}{% endblock %}
<div class="fixed bottom-0 w-full">
{% include 'partials/_footer.html' %}
</div>
</div>
{% block extra_js %}{% endblock %}
</body>
</html>