23 lines
682 B
HTML
23 lines
682 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">
|
|
<title>Impressum</title>
|
|
<link rel="icon" type="image/png" href="{% static 'icons/favicon.png' %}">
|
|
<link rel="stylesheet" href="{% static 'homepage/t-style.css' %}">
|
|
</head>
|
|
<body>
|
|
{% include 'homepage/partials/_nav.html' %}
|
|
<div class="max-w-screen-lg mx-auto">
|
|
{% block content%}{% endblock %}
|
|
<div>
|
|
<p>
|
|
Hallo, ich bin die Datenschutzerklärung!
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% include 'homepage/partials/_footer.html' %}
|
|
</body>
|
|
</html> |