gestiojeux/mainsite/templates/base.html
Guillaume Bertholon be99a76829 Simplify header and adapt auth pages style
Having a title in the header is worse than a normal title inside the
page. Restore the border to compensate.
2020-11-22 13:34:01 +01:00

25 lines
571 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>
<div id="main_content" class="{% block "main_content_class" %}{% endblock %}">
{% include "partials/messages.html" %}
{% block "content" %}
{% endblock %}
</div>
</main>
{% include "partials/footer.html" %}
{% include "partials/base_js.html" %}
{% block "extra_foot" %}{% endblock %}
</body>
</html>