mysteriendrama/templates/base.html
2023-07-22 12:13:39 +02:00

23 lines
618 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">
<title>II. Mysteriendrama | Jugendgruppe Mysteriendrama</title>
<link rel='stylesheet' href='{% static 'css/style.css' %}'>
<link rel='stylesheet' href='{% static 'css/divi.css' %}'>
<link rel='stylesheet' href='{% static 'css/core.min.css' %}'>
<link rel='icon' href='{% static 'pictures/logo.jpg' %}'>
</head>
<body>
<div class="wrapper">
{% include 'navbar.html' %}
{% block content %}
{% endblock content %}
{% include 'footer.html' %}
</div>
</body
</html>