colles.mp2i-vms.fr/colloscope/templates/base.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 %}&copy; UKS 2024{% endblock footer %}
</footer>
</body>