<div class="weather-item text-center">
<div class="weather-item__title font-decorative text-uppercase mb-0">{{ title }}</div>
<div>{{ date | raw }}</div>
<img class="img-fluid mt-3 js-lazy-img weather-item__img" data-src="/static/debug/img/weather/{{ getWeatherIcon(icon) }}.svg" alt="{{ ('weather.icon.' ~ icon)|trans }}">
<div class="font-default-bold mt-2 mt-md-4">
<span class="weather-item__val">{{ min }}°C</span>
{% if max|default(false) %}
<span class="weather-item__val">{{ max }}°C</span>
{% endif %}
</div>
</div>