mysteriendrama/templates/base.html

23 lines
618 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">
<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>