90 lines
2.6 KiB
HTML
90 lines
2.6 KiB
HTML
---
|
|
layout: page
|
|
lang: en
|
|
parentEn: /rf2020/archive
|
|
parentFr: /fr/rf2020/archive
|
|
parentNameEn: rf2020/archive
|
|
parentNameFr: rf2020/archive
|
|
className: event
|
|
---
|
|
|
|
{% assign format=page.format | downcase %}
|
|
{% assign time = page.date | date: "%H:%M" %}
|
|
{% assign endTime = page.endDate | date: "%H:%M" %}
|
|
{% capture date %}
|
|
{% include utils/translated-date.html date=page.date lang=page.lang %}
|
|
{% endcapture %}
|
|
|
|
{% capture regLink %}
|
|
{% if format == 'workshop' and page.registration-link %}
|
|
<div class="textbox margin-16-bottom">
|
|
<a class="with-url-arrow" href="{{ page. registration-link }}">register to participate in this workshop</a>
|
|
</div>
|
|
{% endif %}
|
|
{% endcapture %}
|
|
|
|
{% capture post-class %}
|
|
{% if page.peertube-id or page.youtube-id %}
|
|
post-item
|
|
{% else %}
|
|
post-item content
|
|
{% endif %}
|
|
{% endcapture %}
|
|
|
|
|
|
<article class="page-content margin-64-bottom event">
|
|
<div class="{{ post-class }}">
|
|
<header class="post-header flex flex-align-end">
|
|
<div class="flex flex-col">
|
|
<h2>
|
|
{{ page.title_ | strip }}
|
|
<small>
|
|
[{{ page.format | strip }}]
|
|
</small>
|
|
</h2>
|
|
</div>
|
|
<img src="{{ page.pic }}" alt="" class="participant-profile">
|
|
</header>
|
|
|
|
<div class="flex flex-row flex-justify-space-between flex-wrap-m margin-16-bottom">
|
|
<div class="textbox margin-16-bottom-m hosts">
|
|
<h3>
|
|
By:
|
|
</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>
|
|
{% if time and time != '00:00' %}
|
|
<div class="textbox date-box">
|
|
<h3 class="text-right">Broadcast on:</h3>
|
|
<p class="text-right margin-0">{{ date }}</p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% if page.peertube-id %}
|
|
{% include embeds/peertube.html id=page.peertube-id %}
|
|
{% elsif page.youtube-id %}
|
|
{% include embeds/youtube.html slug=page.youtube-id %}
|
|
{% endif %}
|
|
|
|
<div class="post-content margin-16-bottom">
|
|
{% if page.youtube %}
|
|
{% include embeds/youtube.html slug=page.youtube %}
|
|
{% endif %}
|
|
<p>
|
|
{{ page.description | 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 %}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</article> |