blob: c93bfaca3bd740dba9db382c5b7d1e3faa06ad3a (
plain) (
tree)
|
|
<html>
<head>
<title> Map of a day </title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
<link rel="icon" type="image/png" href="{{ url_for('static', filename='icon.png') }}">
<link rel="apple-touch-icon" type="image/png" href="{{ url_for('static', filename='icon.png') }}">
</head>
<body>
<table class="maps">
<thead>
<th> Day </th>
<th> Map </th>
<th> Map </th>
<tbody>
{% for e in maps %}
<tr>
<td class="day">{{ e[0] }}</td>
<td class="map">{{ e[1] }}</td>
<td class="map">{{ e[2] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>
|