-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagenda.html
38 lines (36 loc) · 1.51 KB
/
agenda.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!-- Agenda Section -->
{% comment %}
Expects following parameters: agenda-data
{% endcomment %}
<section id="agenda" class="container content-section">
<div class="row">
<div class="col-lg-12">
<h2>/ Agenda & recordings</h2>
<p>
Most of the lectures can be watched on our <a class="btn btn-default" href="https://www.youtube.com/playlist?list=PLoaWrlj9TDhOxVS_KLRXQr3PLJTcIH1Xh"><i class="fa-brands fa-youtube"></i> YouTube channel</a>.
</br>
Links to the specific lectures can be found in the agenda below.
</p>
</div>
<div class="col-lg-12 agenda d-flex">
{% for day in include.agenda-data %}
<div class="day days-{{ include.agenda-data | size }}">
<h4>{{ day.title }} <span class="emph d-inline-block">/ {{ day.subtitle }}</span></h4>
<div class="events">
{% for event in day.events %}
<div class="event event-{{ event.height }}">
<div>{{ event.time }}
{% if event.video %}
<a href="{{ event.video }}">(<i class="fa-brands fa-youtube"></i> video)</a>
{% endif %}
</div>
<div><strong>{{ event.title }}</strong></div>
<div style="font-size: 12px;">{{ event.subtitle }}</div>
</div>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
</div>
</section>