impuls/templates/base.html

23 lines
697 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">
<meta name="description" content="Denkena Consulting - Ihr IT-Sicherheitsberater">
<link rel="stylesheet" href="{% static 'css/style.css' %}">
<link rel="stylesheet" href="{% static 'css/all.min.css' %}">
<link rel="icon" href="{% static 'pictures/logo.webp' %}"
</head>
<body>
<div class="dc-wrapper dc-page-background dc-responsive">
{% include "navbar.html" %}
{% block content %}
{% endblock content %}
{% include "footer.html" %}
</div>
</body>
</html>