25 lines
622 B
HTML
25 lines
622 B
HTML
|
---
|
||
|
layout: page
|
||
|
lang: en
|
||
|
ref: 2020-participants
|
||
|
---
|
||
|
|
||
|
{% assign participants = site.data.rf2020.participants | sort: "fullname" %}
|
||
|
|
||
|
<article class="page-content news-post">
|
||
|
<div class="content post-item">
|
||
|
<div class="post-header">
|
||
|
<h2>Participants</h2>
|
||
|
</div>
|
||
|
<div class="post-content margin-16-bottom">
|
||
|
<ul>
|
||
|
{% for participant in participants %}
|
||
|
<li>
|
||
|
<a class="block with-url-arrow" href="/rf2020/participants/{{ participant.ref }}">{{ participant.fullname }}</a>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</article>
|