annotate weather_server/templates/index.html @ 27:99b0759386b1

index: Add meta-viewport declaration.
author Paul Fisher <paul@pfish.zone>
date Sun, 10 Nov 2019 23:48:38 -0500
parents 7def5611895b
children 27217790dc04
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
1 <!doctype html>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
2 <html>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
3 <head>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
4 <title>The Weather In Places</title>
27
99b0759386b1 index: Add meta-viewport declaration.
Paul Fisher <paul@pfish.zone>
parents: 26
diff changeset
5 <meta name="viewport" content="width=device-width, initial-scale=1">
26
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
6 <link
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
7 rel="stylesheet"
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
8 href="{{ url_for('static', filename='style.css') }}">
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
9 <link
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
10 rel="shortcut icon"
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
11 href="{{ url_for('static', filename='thermometer.png') }}">
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
12 </head>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
13 <body class="home">
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
14 <h1><span>Weather</span></h1>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
15 <ul>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
16 {% for location in locations %}
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
17 <li>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
18 <a href="{{ url_for('show', location=location.key) }}">
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
19 <b>{{ location.name }}</b>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
20 <span>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
21 {%- set reading = location.latest() -%}
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
22 {%- if reading -%}
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
23 {{ reading.temp_f|round|int -}}
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
24 &nbsp;°F
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
25 {%- else -%}
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
26 ???
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
27 {%- endif -%}
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
28 </span>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
29 </a>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
30 </li>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
31 {% endfor %}
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
32 </ul>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
33 </body>
7def5611895b Add support for an index page displaying all locations.
Paul Fisher <paul@pfish.zone>
parents:
diff changeset
34 </html>