rf-web/_layouts/event.html

39 lines
980 B
HTML
Raw Normal View History

2020-07-29 16:24:30 +00:00
---
layout: page
lang: en
ref: index
2020-07-29 16:24:30 +00:00
---
<article class="page-content news-post">
<div class="content post-item">
<header class="post-header">
<h2> {{ page.title_ }}</h2>
2020-07-29 16:24:30 +00:00
</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>
2020-07-29 16:24:30 +00:00
{% 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>
2020-07-29 16:24:30 +00:00
{% endif %}
{% endfor %}
{% endfor %}
</div>
{% include common/separator.html %}
<div class="post-content">
<h3>
Description:
</h3>
2020-07-29 16:24:30 +00:00
<p>
{{ page.description | markdownify }}
</p>
2020-07-29 16:24:30 +00:00
</div>
</div>
</article>