2020-08-16 09:54:33 +00:00
|
|
|
{% assign event = include.common/program/full-program.html %}
|
|
|
|
|
|
|
|
|
|
|
|
<li class="textbox margin-16-bottom">
|
2020-08-16 16:03:53 +00:00
|
|
|
<a href="/rf2020/events/{{ event.ref }}.html">{{ event.title_ }}</a>
|
2020-08-17 07:48:14 +00:00
|
|
|
<span class="hide-mobile">
|
|
|
|
<span>→</span>
|
|
|
|
{% for eventParticipantId in event.participants %}
|
|
|
|
{% for participant in site.data.rf2020.participants %}
|
|
|
|
{% if participant.id == eventParticipantId %}
|
|
|
|
<a href="/rf2020/participants/{{ participant.ref }}.html">{{ participant.fullname }}</a>
|
|
|
|
{% 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
|
|
|
|
|
|
|
{% if event.format %}
|
|
|
|
<span>[{{ event.format }}]</span>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</li>
|