21 lines
		
	
	
		
			642 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			642 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 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 %}
 | 
						|
    {% endfor %}
 | 
						|
  </span>
 | 
						|
 | 
						|
  {% if event.format %}
 | 
						|
    <span>[{{ event.format }}]</span>
 | 
						|
  {% endif %}
 | 
						|
 | 
						|
</li>  |