forked from wezm/wezm.net
16 lines
611 B
HTML
16 lines
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>
|