rf-web/_layouts/event.html
2020-07-30 12:06:45 +02:00

37 lines
911 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>
<div class="post-content">
<h3>
{% include utils/translated-date.html date=page.date lang=page.lang %}
</h3>
<h3>
By:
</h3>
{% 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 %}
</div>
{% include common/separator.html %}
<div class="post-content">
<h3>
Description:
</h3>
<p>
{{ page.description | markdownify }}
</p>
</div>
</div>
</article>