gestiojeux/website/templates/base.html

23 lines
522 B
HTML
Raw Normal View History

{% 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>