rf-web/_layouts/event.html
2020-08-17 09:48:14 +02:00

57 lines
1.5 KiB
HTML

---
layout: page
lang: en
---
<article class="page-content margin-64-bottom event">
<div class="content post-item">
<header class="post-header">
<div class="flex flex-col">
<h2>
{{ page.title_ | strip }}
<small>
[{{ page.format | strip }}]
</small>
</h2>
</div>
<!-- <div class="flex flex-col margin-16-left text-center">
<small class="textbox-sm inline-block ">
[{{ page.format }}]
</small>
</div> -->
</header>
<div class="post-content margin-16-bottom">
<!-- <h3>
Description:
</h3> -->
<p>
{{ page.description | markdownify }}
</p>
</div>
<div class="flex flex-row flex-justify-space-between flex-wrap-m details">
<div class="post-content inline-block">
<h3>
In this {{ page.format }}:
</h3>
{% for id in page.participants %}
{% for participant in site.data.rf2020.participants %}
{% if participant.id == id %}
<a class="block with-url-arrow" href="/rf2020/participants/{{ participant.ref }}.html">{{ participant.fullname }}</a>
{% endif %}
{% endfor %}
{% endfor %}
</div>
<div class="post-content inline-block margin-16-left">
<h3 class="text-right">
Event date/time:
</h3>
<p class="text-right">
{{ page.date | date: "%d.%m.%y" }}
</p>
</div>
</div>
</div>
</article>