<ul class="cux-weather-forecast">
  {{#each resorts.[0].forecasts}}
    <li>
      <h4>
        <span class="week-day">{{this.day}}</span>
        {{this.date}}
      </h4>
      <div class="cux-weather-icon {{lowercase this.weatherCondition}}">
        {{>icon_svg name=(keyToSvgMapper (lowercase this.weatherCondition))}}
      </div>
      <div class="forecast">
        <div>
          <p>{{dayText}}</p>
          <p>{{#if this.maxTemperature}}{{this.maxTemperature}}&deg;{{else}}-{{/if}}</p>
        </div>
        <div>
          <p>{{nightText}}</p>
          <p>{{#if this.minTemperature}}{{this.minTemperature}}&deg;{{else}}-{{/if}}</p>
        </div>
      </div>
    </li>
  {{/each}}
</ul>
