forked from pydataberlin/pydataberlin.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeakers.html
25 lines (23 loc) · 801 Bytes
/
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
---
layout: page
title: PyData Berlin 2015 | May 29-30
---
<div class="row" id="content" style="margin-top: 115px">
<div class="large-10 columns">
<a name="keynotes"><h1>Keynotes</h1></a>
<div class="speaker-container">
{% assign collection = site.data.keynotes | where:"type","keynote" | sort: "name", "first" %}
{% for speaker in collection %}
{% include speaker.html speaker=speaker %}
{% endfor %}
</div>
<a name="speaker"><h1>Speakers</h1></a>
<div class="speaker-container">
{% assign collection = site.data.keynotes | where:"type","talk" | sort: "name", "first" %}
{% for speaker in collection %}
{% include speaker.html speaker=speaker %}
{% endfor %}
</div>
</div>
{% include sponsors.html %}
</div>