2018-07-02 15:43:24 +02:00

24 lines
970 B
Plaintext

{% if forecast %}
<div class="normal medium">
<table class="small">
{% for f in forecast %}
<tr class="{% if config.colored %}colored{% endif %}">
<td class="day">{{f.day}}</td>
<td class="bright weather-icon"><span class="wi weathericon {{f.icon}}"></span></td>
<td class="align-right bright max-temp">
{{f.maxTemperature | roundValue | unit("temperature")}}
</td>
<td class="align-right min-temp">
{{f.minTemperature | roundValue | unit("temperature")}}
</td>
</tr>
{% endfor %}
</table>
</div>
{% else %}
{{"LOADING" | translate}}
{% endif %}
<!-- Unclomment the line below to see the contents of the `current` object. -->
<!-- <div style="word-wrap:break-word" class="xsmall dimmed">{{forecast | dump}}</div> -->