forked from DGNum/gestiojeux
31 lines
583 B
HTML
31 lines
583 B
HTML
|
{% load static %}
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
{% include "partials/head.html" %}
|
||
|
{% block "extra_head" %}{% endblock %}
|
||
|
</head>
|
||
|
<body>
|
||
|
{% include "partials/header.html" %}
|
||
|
|
||
|
<h1>
|
||
|
{% block "title" %}
|
||
|
{% endblock %}
|
||
|
</h1>
|
||
|
|
||
|
<main>
|
||
|
<div id="main_content">
|
||
|
{% include "partials/messages.html" %}
|
||
|
|
||
|
{% block "content" %}
|
||
|
{% endblock %}
|
||
|
</div>
|
||
|
</main>
|
||
|
|
||
|
{% include "partials/footer.html" %}
|
||
|
{% include "partials/base_js.html" %}
|
||
|
{% block "extra_foot" %}{% endblock %}
|
||
|
</body>
|
||
|
</html>
|