27 lines
865 B
HTML
27 lines
865 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="fr-fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}{% endblock title %}</title>
|
|
<link href="{% static 'main.css' %}" rel="stylesheet" type="text/css">
|
|
{% block head %}{% endblock head %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{% if request.session.overseer is not None %}
|
|
<div class="oversee">
|
|
Vous voyez ce site en tant que... Désactiver
|
|
</div>
|
|
{% endif %}
|
|
{% block header %}{% endblock header %}
|
|
</header>
|
|
<main>
|
|
{% block main %}{% endblock main %}
|
|
</main>
|
|
<footer>
|
|
{% block footer %}© UKS 2024{% endblock footer %}
|
|
</footer>
|
|
</body>
|