18 lines
518 B
HTML
18 lines
518 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="{% static 'homepage/t-style.css' %}">
|
|
<title>qivip</title>
|
|
</head>
|
|
<body>
|
|
{% include 'homepage/partials/_nav.html' %}
|
|
<div class="max-w-screen-lg mx-auto">
|
|
{% block content%}{% endblock %}
|
|
</div>
|
|
{% include 'homepage/partials/_footer.html' %}
|
|
{% block extra_js %}{% endblock %}
|
|
</body>
|
|
</html> |