2020-08-16 09:54:33 +00:00
|
|
|
{% assign event = include.common/program/full-program.html %}
|
2020-09-08 14:46:22 +00:00
|
|
|
{% assign time = event.date | date: "%H:%M" %}
|
2020-09-09 11:05:53 +00:00
|
|
|
{% assign endTime = event.endDate | date: "%H:%M" %}
|
2020-08-16 09:54:33 +00:00
|
|
|
|
2020-09-09 11:05:53 +00:00
|
|
|
{% if time and time != '00:00' %}
|
|
|
|
<p class="event-time textbox inline-block">
|
|
|
|
{{time}}
|
|
|
|
{% if endTime %}
|
|
|
|
→ {{ endTime }}
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
2020-08-16 09:54:33 +00:00
|
|
|
|
2020-09-09 11:05:53 +00:00
|
|
|
<li class="margin-32-bottom flex flex-justify-space-between flex-align-center textbox event">
|
2020-08-17 20:11:19 +00:00
|
|
|
<span class="flex-5 margin-0 text-lg">
|
2020-09-11 09:43:26 +00:00
|
|
|
{% if event.ref != "no-ref" %}
|
|
|
|
<a href="/rf2020/events/{{ event.ref }}.html" class="margin-0">{{ event.title_ }}</a>
|
|
|
|
{% if event.format and event.format != 'misc' %}
|
|
|
|
<small class="prog-item--format sup flex-1 margin-0">[{{ event.format }}]</small>
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
<p class="margin-0 bold">{{ event.title_ }}</p>
|
2020-08-17 20:11:19 +00:00
|
|
|
{% endif %}
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<span class="hide-mobile text-right flex-2 margin-0">
|
2020-08-17 07:48:14 +00:00
|
|
|
{% for eventParticipantId in event.participants %}
|
|
|
|
{% for participant in site.data.rf2020.participants %}
|
|
|
|
{% if participant.id == eventParticipantId %}
|
2020-09-09 11:05:53 +00:00
|
|
|
<a href="/rf2020/participants/{{ participant.ref }}.html" class="margin-0 with-url-arrow block">{{ participant.fullname }}</a>
|
2020-08-17 07:48:14 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2020-08-16 09:54:33 +00:00
|
|
|
{% endfor %}
|
2020-08-17 07:48:14 +00:00
|
|
|
</span>
|
2020-08-16 09:54:33 +00:00
|
|
|
|
|
|
|
</li>
|