impuls/templates/base_mail.html

20 lines
535 B
HTML

{% load static %} {% load markdown_extras %}
<!DOCTYPE html>
<html lang="de">
<head>
<title>{% block title %}{% endblock title %}Im·Puls</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://im-puls.org/static/css/style.css">
<link rel="icon" href="https://im-puls.org/static/pictures/logo.webp">
</head>
<body>
<div class="wrapper dc-primary-background">
{% block content %}
{% endblock content %}
{% include "footer.html" %}
</div>
</body>
</html>