impuls/templates/base.html

22 lines
600 B
HTML
Raw Normal View History

2023-10-03 16:51:46 +02:00
{% load static %} {% load markdown_extras %}
<!DOCTYPE html>
<html lang="de">
<head>
2023-11-03 16:47:44 +01:00
<title>{% block title %}{% endblock title %}Im·Puls</title>
2023-10-03 16:51:46 +02:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-12-13 19:01:17 +01:00
<meta name="description" content="Tagung für junge Erwachsene">
2023-10-03 16:51:46 +02:00
<link rel="stylesheet" href="{% static 'css/style.css' %}">
2023-11-03 16:47:44 +01:00
<link rel="icon" href="{% static 'pictures/logo.webp' %}"
2023-10-03 16:51:46 +02:00
</head>
<body>
<div class="wrapper dc-page-background">
2023-10-03 16:51:46 +02:00
{% include "navbar.html" %}
{% block content %}
{% endblock content %}
{% include "footer.html" %}
</div>
</body>
</html>