aboutsummaryrefslogtreecommitdiff
path: root/compose/cs/templates
diff options
context:
space:
mode:
Diffstat (limited to 'compose/cs/templates')
-rw-r--r--compose/cs/templates/main.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/compose/cs/templates/main.html b/compose/cs/templates/main.html
new file mode 100644
index 0000000..c93bfac
--- /dev/null
+++ b/compose/cs/templates/main.html
@@ -0,0 +1,27 @@
+<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>