{% for day in site.data.schedule %}

{{ day.dateReadable }}

Day {{ forloop.index }}
{% for track in day.tracks %} {% assign trackColWidth = 12 | divided_by: forloop.length %} {% endfor %}
{% for timeslot in day.timeslots %}
{% for slot in timeslot.sessionIds %} {% assign slotColWidth = 12 | divided_by: forloop.length %} {% assign slotIndex = forloop.index0 %} {% if slot != 404 %} {% for session in site.data.sessions %} {% if slot == session.id and session.service == null %}
{{ session.title }}
{{ session.description }} {{session.language | upcase}}
    {% for speaker in site.data.speakers %} {% for session_speaker in session.speakers %} {% if session_speaker == speaker.id %}
  • {{ speaker.name }} {{ speaker.surname }} {{ speaker.company }}

  • {% endif %} {% endfor %} {% endfor %}
{% elsif slot == session.id and session.service != null %}
{{ session.title }}
{% if session.description != null %}

{{ session.description }}

{% endif %}
{% endif %} {% endfor %} {% else %} {% endif %} {% endfor %}
{% endfor %}
{% endfor %}