konova/templates/base.html

31 lines
643 B
HTML
Raw Normal View History

2021-07-01 13:36:07 +02:00
<!DOCTYPE html>
2021-07-02 11:38:44 +02:00
{% load static i18n fontawesome_5 bootstrap4 %}
2021-07-01 13:36:07 +02:00
<html lang="{{ language }}">
<head>
<meta charset="UTF-8">
<title>{{ base_title }}</title>
2021-07-01 14:38:57 +02:00
{% bootstrap_css %}
{% bootstrap_javascript jquery='full' %}
2021-07-01 13:36:07 +02:00
{% fontawesome_5_static %}
2021-07-02 11:38:44 +02:00
<link rel="stylesheet" href="{% static 'css/konova.css' %}">
2021-07-01 13:36:07 +02:00
{% block head %}
{% endblock %}
</head>
<body>
2021-07-02 11:38:44 +02:00
<header>
{% block header %}
{% include 'navbar.html' %}
{% endblock %}
</header>
<div class="container-fluid">
2021-07-01 13:36:07 +02:00
</div>
2021-07-02 11:38:44 +02:00
2021-07-02 13:46:06 +02:00
{% block footer %}
{% include 'footer.html' %}
{% endblock %}
2021-07-01 13:36:07 +02:00
</body>
</html>