serveur_lycee/files/root_index.html.j2

23 lines
487 B
Django/Jinja

<!DOCTYPE html>
<html lang=fr>
<head>
<meta charset="UTF-8">
<meta name="Author" content="B.Bertrand">
<title>{{ item }}</title>
</head>
<body>
<h1> Serveur pédagogique pour {{ matiere }} </h1>
<!-- corps: tout ce que l'on veut afficher doit être mis entre ces balises -->
<ul>
{% for user in peda %}
<li>
<a href="./~{{ user }}">{{ user }}</a>
</li>
{% endfor%}
</ul>
</body>
</html>