23 lines
603 B
HTML
23 lines
603 B
HTML
|
---
|
||
|
layout: page
|
||
|
lang: fr
|
||
|
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 }}.html">{{ participant.fullname }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</article>
|