impuls/templates/base.html

22 lines
618 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">
<meta name="description" content="Denkena Consulting - Ihr IT-Sicherheitsberater">
<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>