<table class="table">
  <thead>
    <tr>
      <th>{{>icon_svg name="temp-air"}} <span>{{this.tableHeadings.temperatureAirDay}}</span></th>
      <th>{{>icon_svg name="moon"}} <span>{{this.tableHeadings.temperatureAirNight}}</span></th>
      <th>{{>icon_svg name="temp-water"}} <span>{{this.tableHeadings.temperatureWater}}</span></th>
      <th>{{>icon_svg name="sun"}} <span>{{this.tableHeadings.numberOfRainFreeDays}}</span></th>
      <th>{{this.tableHeadings.destination}}</th>
    </tr>
  </thead>
  <tbody>
  {{#each this.tableData}}
    <tr>
      <td>{{this.dayTemperature}}{{#if this.dayTemperature}}&deg;{{/if}}</td>
      <td>{{this.nightTemperature}}{{#if this.nightTemperature}}&deg;{{/if}}</td>
      <td>{{this.waterTemperature}}{{#if this.waterTemperature}}&deg;{{/if}}</td>
      <td>{{this.numberOfRainFreeDays}}</td>
      <td><a href="{{this.destinationUrl}}">{{this.printName}}</a></td>
      </td>
    </tr>
  {{/each}}
  </tbody>
</table>
