rf-web/_layouts/participant.html
2020-11-22 21:08:43 +01:00

52 lines
1.4 KiB
HTML

---
layout: page
lang: en
ref: going-online
parentEn: /rf2020/participants/
parentFr: /fr/rf2020/participants/
parentNameEn: rf2020/participants
parentNameFr: rf2020/intervenants
---
<article class="page-content margin-128-bottom participant">
<div class="content post-item">
<header class="post-header">
<h2>{{ page.fullname }}</h2>
{% if page.pic %}
<img src="{{ page.pic }}" alt="" class="participant-profile">
{% endif %}
</header>
<div class="post-content margin-16-bottom">
<h2>
Biography
</h2>
<p>
{{ page.bio | markdownify }}
</p>
{% for link in page.links %}
<a class="block with-url-arrow" href="{{ link }}">{{ link | remove_first: "https://" | remove_first: "http://" | remove_first: "www." }}</a>
{% endfor %}
{% if page.youtube %}
{% include embeds/youtube.html slug=page.youtube %}
{% endif %}
</div>
<div class="post-content margin-16-bottom inline-block">
<h3>
{{ page.fullname }}'s events:
</h3>
{% for event in site.data.rf2020.events %}
{% for id in event.participants %}
{% if page.id == id %}
<a class="block with-url-arrow" href="/rf2020/events/{{ event.ref }}.html">{{ event.title_ }}</a>
{% endif %}
{% endfor %}
{% endfor %}
</div>
</div>
</article>