-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
57 lines (55 loc) · 1.98 KB
/
index.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
layout: default
title: Speakers
---
<h1 class="sr-only">Speakers</h1>
{% if site.data.speakers %}
<section>
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h1">Keynotes</h2>
</div>
</div>
<div class="row">
<div class="col-12 keynote-sequence sequence">
{% assign keynotes = site.data.speakers | where: 'keynote', true %}
{% if keynotes.size <= 0 %}
<div class="speaker-box text-center" id="no_keynote-id" data-speaker-info="#no_keynote-info">
<div class="speaker-box-inner">
<a href="#" class="speaker-info-toggle" data-target="#no_keynote">
<img class="clip-circle-lg" src="/assets/img/nopics/nopic3.jpg" alt="no image">
</a>
<div class="speaker-mini">
<p>The keynotes speakers for Code4Lib have not been announced yet.</p>
</div>
<div class="arrow-down"></div>
</div>
</div>
{% else %}
{% for keynote in keynotes %}
{% include speaker_box.html speaker=keynote %}
{% endfor %}
{% endif %}
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h1">Talks and Workshops</h2>
</div>
</div>
<div class="row">
<div class="col-12 speaker-sequence sequence">
{% assign speakers = site.data.speakers | where: 'keynote', false | sort: 'last' %}
{% for speaker in speakers %}
{% include speaker_box.html speaker=speaker %}
{% endfor %}
</div>
</div>
</div>
</section>
{% endif %}