-
Notifications
You must be signed in to change notification settings - Fork 22
/
speakers.html
42 lines (41 loc) · 1.26 KB
/
speakers.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
---
layout: default
title: Speakers
---
<div class="row section">
<div class="cell cell-lg">
<div class="row">
<div class="col-xs-12">
<h1>Keynotes</h1>
</div>
</div>
<div class="row">
<div class="col-xs-12 keynote-sequence sequence">
{% for person in site.data.speakers_final %}
{% assign speaker = person[1] %}
{% if speaker.Keynote == 1 %}
{% include speaker_box.html param=speaker %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
<div class="row section">
<div class="cell cell-lg">
<div class="row">
<div class="col-xs-12">
<h1>Speakers</h1>
</div>
</div>
<div class="row">
<div class="col-xs-12 speaker-sequence sequence">
{% for person in site.data.speakers_final | sort: "Last" %}
{% assign speaker = person[1] %}
{% if speaker.Keynote == 0 and speaker.Show == 1%}
{% include speaker_box.html param=speaker %}
{% endif %}
{% endfor %}
</div>
</div>
</div>