mysteriendrama/templates/base.html
2023-08-06 14:25:05 +02:00

23 lines
609 B
HTML

{% load static %}
<!DOCTYPE html>
<html lang="de-DE">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Jugendgruppe Mysteriendrama">
<title>{% block title %}{%endblock title %} | Jugendgruppe Mysteriendrama</title>
<link rel='stylesheet' fetchpriority="low" href='{% static 'css/style.css' %}'>
<link rel='icon' href='{% static 'pictures/sigil-new.webp' %}'>
</head>
<body>
<div class="dc-wrapper">
{% include 'navbar.html' %}
{% block content %}
{% endblock content %}
{% include 'footer.html' %}
</div>
</body>
</html>