23 lines
901 B
HTML
23 lines
901 B
HTML
{% assign event = include.common/program/full-program.html %}
|
|
|
|
|
|
<li class="margin-16-bottom flex flex-justify-space-between flex-align-center textbox">
|
|
<!-- <span class="textbox-sm">→</span> -->
|
|
<span class="flex-5 margin-0 text-lg">
|
|
<a href="/rf2020/events/{{ event.ref }}.html" class="margin-0">{{ event.title_ }}</a>
|
|
{% if event.format %}
|
|
<small class="prog-item--format sup flex-1 margin-0">[{{ event.format }}]</small>
|
|
{% endif %}
|
|
</span>
|
|
|
|
<span class="hide-mobile text-right flex-2 margin-0">
|
|
{% for eventParticipantId in event.participants %}
|
|
{% for participant in site.data.rf2020.participants %}
|
|
{% if participant.id == eventParticipantId %}
|
|
<a href="/rf2020/participants/{{ participant.ref }}.html" class="margin-0 with-url-arrow">{{ participant.fullname }}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</span>
|
|
|
|
</li> |