rf-web/_layouts/event.html

38 lines
900 B
HTML
Raw Normal View History

2020-07-29 16:24:30 +00:00
---
layout: page
lang: en
---
<article class="page-content event">
2020-07-29 16:24:30 +00:00
<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">
2020-07-29 16:24:30 +00:00
{% 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>
2020-07-29 16:24:30 +00:00
{% endif %}
{% endfor %}
{% endfor %}
</div>
</header>
{% 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>