rf-web/_layouts/event.html
Clément Charollais 492c9ff2b5 first test-run
2020-07-29 18:24:30 +02:00

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>