25 lines
706 B
HTML
25 lines
706 B
HTML
---
|
|
layout: page
|
|
lang: fr
|
|
ref: participants-2020
|
|
---
|
|
|
|
{% assign participants = site.data.rf2020.participants | sort_natural: "fullname" %}
|
|
|
|
<article class="page-content news-post margin-128-bottom">
|
|
<div class="content post-item">
|
|
<div class="post-header">
|
|
<h2>{{ site.data.translations.participants[page.lang] }}</h2>
|
|
</div>
|
|
<div class="post-content margin-16-bottom inline-block">
|
|
<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> |