diff options
author | Paweł Dybiec <pawel@dybiec.info> | 2020-05-24 23:36:36 +0200 |
---|---|---|
committer | Paweł Dybiec <pawel@dybiec.info> | 2020-05-24 23:36:36 +0200 |
commit | 314c42acd1595146a66a9530c982b660832cf3e5 (patch) | |
tree | 34ef9ec80df82178887f6ae00a924d7a2b430c96 /compose/cs/templates/main.html | |
parent | Optimize darling website (diff) |
Add cs map service
Diffstat (limited to 'compose/cs/templates/main.html')
-rw-r--r-- | compose/cs/templates/main.html | 27 |
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> |