mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 09:52:32 +00:00
16 lines
No EOL
611 B
HTML
16 lines
No EOL
611 B
HTML
<div id="current">
|
|
<figure class="forecast">
|
|
<img src="/images/weather/{{forecast}}.png" width="48" height="48" alt="{{forecast}}" />
|
|
<figcaption>Forecast</figcaption>
|
|
</figure>
|
|
|
|
<div class="temperature">
|
|
<div class="current temperature">{{temperature}}°C</div>
|
|
<div class="minmax">
|
|
Minimum <span class="min temperature">{{min_temp}}°C</span> at
|
|
<time datetime="{{min_datetime}}">{{minDateString}}</time>
|
|
Maximum <span class="max temperature">{{max_temp}}°C</span> at
|
|
<time datetime="{{max_datetime}}">{{maxDateString}}</time>
|
|
</div>
|
|
</div>
|
|
</div> |