36 lines
755 B
HTML
36 lines
755 B
HTML
|
---
|
||
|
layout: page
|
||
|
lang: en
|
||
|
ref: going-online
|
||
|
---
|
||
|
|
||
|
<article class="page-content news-post">
|
||
|
<div class="content post-item">
|
||
|
<header class="post-header">
|
||
|
<h2>{{ page.title_ }}</h2>
|
||
|
</header>
|
||
|
|
||
|
<p class="block">
|
||
|
|
||
|
</p>
|
||
|
<div class="post-content">
|
||
|
<h2>
|
||
|
{{ page.title_ }}
|
||
|
</h2>
|
||
|
<p>
|
||
|
Participants :
|
||
|
</p>
|
||
|
{% for id in page.participants %}
|
||
|
{% for participant in site.data.rf2020.participants %}
|
||
|
{% if participant.id == id %}
|
||
|
<a class="block with-url-arrow" href="/participants/{{ id }}.html">{{ participant.fullname }}</a>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
{% endfor %}
|
||
|
<p>
|
||
|
{{ page.description }}
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</article>
|