rf-web/_layouts/event.html
2020-08-16 11:54:33 +02:00

38 lines
900 B
HTML

---
layout: page
lang: en
---
<article class="page-content event">
<div class="content post-item">
<header class="post-header">
<div class="flex flex-col">
<h2>{{ page.title_ }}</h2>
<h3>
[{{ page.format }}]
</h3>
</div>
<div class="flex flex-col">
{% for id in page.participants %}
{% for participant in site.data.rf2020.participants %}
{% if participant.id == id %}
<h3>
<a class="block with-url-arrow" href="/rf2020/participants/{{ participant.ref }}">{{ participant.fullname }}</a>
</h3>
{% endif %}
{% endfor %}
{% endfor %}
</div>
</header>
{% include common/separator.html %}
<div class="post-content">
<h3>
Description:
</h3>
<p>
{{ page.description | markdownify }}
</p>
</div>
</div>
</article>