2020-10-11 22:16:00 +02:00
|
|
|
{% load static %}
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
{% include "partials/head.html" %}
|
|
|
|
{% block "extra_head" %}{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include "partials/header.html" %}
|
|
|
|
|
|
|
|
<main>
|
2020-11-22 13:34:01 +01:00
|
|
|
<div id="main_content" class="{% block "main_content_class" %}{% endblock %}">
|
2020-10-11 22:16:00 +02:00
|
|
|
{% include "partials/messages.html" %}
|
|
|
|
|
|
|
|
{% block "content" %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
{% include "partials/footer.html" %}
|
|
|
|
{% include "partials/base_js.html" %}
|
|
|
|
{% block "extra_foot" %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|