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

39 lines
980 B
HTML

---
layout: page
lang: en
ref: index
---
<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 %}
{{ page.date | date: "%H:%M" }}
</h3>
<p>{{ page.ref }}</p>
<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/{{ participant.ref }}">{{ 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>