rf-web/_layouts/participant.html

52 lines
1.4 KiB
HTML
Raw Normal View History

---
layout: page
lang: en
ref: going-online
parentEn: /rf2020/participants/
parentFr: /fr/rf2020/participants/
parentNameEn: participants
parentNameFr: intervenants
---
<article class="page-content margin-128-bottom participant">
<div class="content post-item">
<header class="post-header">
2020-07-29 16:24:30 +00:00
<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>
2020-08-21 18:25:52 +00:00
Biography
</h2>
2020-07-29 16:24:30 +00:00
<p>
2020-08-21 18:25:52 +00:00
{{ page.bio | markdownify }}
2020-07-29 16:24:30 +00:00
</p>
{% for site in page.links %}
<a class="block with-url-arrow" href="{{ site }}">{{ site | remove_first: "https://" | remove_first: "http://" | remove_first: "www." }}</a>
{% endfor %}
2020-08-21 18:25:52 +00:00
{% 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>
2020-07-29 16:24:30 +00:00
{% endif %}
{% endfor %}
{% endfor %}
</div>
</div>
</article>