mysteriendrama/templates/base.html

23 lines
609 B
HTML
Raw Normal View History

2023-07-22 12:04:19 +02:00
{% 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' %}'>
2023-07-22 12:04:19 +02:00
</head>
2023-07-25 01:12:44 +02:00
<body>
<div class="dc-wrapper">
2023-07-22 12:04:19 +02:00
{% include 'navbar.html' %}
{% block content %}
{% endblock content %}
{% include 'footer.html' %}
</div>
2023-07-23 03:00:49 +02:00
</body>
2023-07-22 12:04:19 +02:00
</html>