19 lines
587 B
HTML
19 lines
587 B
HTML
{% assign event = include.common/program/full-program.html %}
|
|
|
|
|
|
<li class="textbox margin-16-bottom">
|
|
<a href="/rf2020/events/{{ event.ref }}.html">{{ event.title_ }}</a>
|
|
<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 %}
|
|
{% endfor %}
|
|
|
|
{% if event.format %}
|
|
<span>[{{ event.format }}]</span>
|
|
{% endif %}
|
|
|
|
</li> |