{% extends "_layout" %} {% block content %}
{% if entry.eventCoverage %}
{% if entry.videoEmbed|length > 0 %} {% else %}

Live tracking

View fullscreen tracking here

{% endif %}
{% endif %}
{% set standings = craft.entries.section('homepageStandings') %} {% for standingTable in standings %} {% if standingTable.title == 'Fleet' %}

{{ standingTable.resultsTableTitle }}

  • Pos
  • Nat
  • Team
  • Points
{% for fleetStandings in standingTable.homepageStandings %} {# loops through superTable fields #}
  • {{ fleetStandings.position }}
  • {% for team in fleetStandings.team %} {% set nation = team.teamCountry.first() %} {% set flag = nation.flag.first() %}
  • {{ nation.title }}{{ nation.shortCode }}
  • {{ team.title }}
  • {{ fleetStandings.points }}
  • {% endfor %}
{% endfor %}
{% endif %} {% if standingTable.title == 'Match' %}

{{ standingTable.resultsTableTitle }}

  • Pos
  • Nat
  • Team
  • Points
{% for fleetStandings in standingTable.homepageStandings %} {# loops through superTable fields #}
  • {{ fleetStandings.position }}
  • {% for team in fleetStandings.team %} {% set nation = team.teamCountry.first() %} {% set flag = nation.flag.first() %}
  • {{ nation.title }}{{ nation.shortCode }}
  • {{ team.title }}
  • {{ fleetStandings.points }}
  • {% endfor %}
{% endfor %}
{% endif %} {% endfor %}
{% endblock %}