From fe58e5afb1b1d34913b1a142c63c844947757fbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chlo=C3=A9=20Schmitz?= <chloe.schmitz@student.uclouvain.be> Date: Mon, 19 Feb 2024 10:25:38 +0000 Subject: [PATCH] Upload New File --- base.html | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 base.html diff --git a/base.html b/base.html new file mode 100644 index 0000000..a69059d --- /dev/null +++ b/base.html @@ -0,0 +1,35 @@ +<!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 -- GitLab