projectc/templates/base.html
2024-05-14 11:51:19 +02:00

18 lines
397 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ENIM : Concours bac+2</title>
<!-- <link href="css/style.css" rel="stylesheet"> -->
<style>
{% block css %}
{% endblock css %}
</style>
</head>
<body>
{% block content %}
{% endblock content %}
</body>
</html>