forked from DGNum/gestiojeux
22 lines
522 B
HTML
22 lines
522 B
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
{% include "partials/head.html" %}
|
|
{% block "extra_head" %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% include "partials/header.html" %}
|
|
|
|
<main {% block "main_attributes" %}{% endblock %}>
|
|
{% include "partials/messages.html" %}
|
|
|
|
{% block "content" %}{% endblock %}
|
|
</main>
|
|
|
|
{% include "partials/footer.html" %}
|
|
<script src="{% static "js/gestiojeux.js" %}"></script>
|
|
{% block "extra_foot" %}{% endblock %}
|
|
</body>
|
|
</html>
|