gestiojeux/website/templates/base.html
2020-12-27 12:48:08 +01:00

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>