2020-12-13 00:12:06 +01:00
|
|
|
{% load static %}
|
|
|
|
|
2020-10-11 22:16:00 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
{% include "partials/head.html" %}
|
|
|
|
{% block "extra_head" %}{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include "partials/header.html" %}
|
|
|
|
|
2020-12-18 21:20:59 +01:00
|
|
|
<main {% block "main_attributes" %}{% endblock %}>
|
|
|
|
{% include "partials/messages.html" %}
|
2020-10-11 22:16:00 +02:00
|
|
|
|
2020-12-18 21:20:59 +01:00
|
|
|
{% block "content" %}{% endblock %}
|
2020-10-11 22:16:00 +02:00
|
|
|
</main>
|
|
|
|
|
|
|
|
{% include "partials/footer.html" %}
|
2020-12-13 00:12:06 +01:00
|
|
|
<script src="{% static "js/gestiojeux.js" %}"></script>
|
2020-10-11 22:16:00 +02:00
|
|
|
{% block "extra_foot" %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|