Skip to content
Extraits de code Groupes Projets
Valider fe58e5af rédigé par Chloé Schmitz's avatar Chloé Schmitz
Parcourir les fichiers

Upload New File

parent 6b0fbec2
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<meta charset="UTF-8">
<title>My App</title>
</head>
<body>
<nav>
<ul>
<li><a href="/">Main page</a></li>
<li><a href="/about">About</a></li>
<li><a href="/chloe">Chloé</a></li>
</ul>
</nav>
<div>
<h1>Mobility</h1>
</div>
<h2>City list</h2>
<table class="center">
<tr>
<th>Postal code</th>
<th>Name</th>
<th>Population</th>
</tr>
{% for city in cities %}
<tr>
<td>{{ city[0] }}</td>
<td>{{ city[1] }}</td>
<td>{{ city[2] }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>
\ No newline at end of file
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter