-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspeakers.html
More file actions
58 lines (58 loc) · 2.77 KB
/
speakers.html
File metadata and controls
58 lines (58 loc) · 2.77 KB
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
58
---
layout: default
title: Speakers
link: speakers
invited:
- name: Big Bird
affiliation: Sesame University
picture: bigbird
abstract: Gumbo beet greens corn soko endive gumbo gourd. Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato. Dandelion cucumber earthnut pea peanut soko zucchini.
- name: Cookie Monster
affiliation: Cookie Polytechnic
picture: cookiemonster
abstract: Cake carrot cake danish pastry ice cream. Cotton candy tootsie roll candy canes chocolate danish. Cookie donut apple pie donut cake chocolate bar macaroon gingerbread topping. Tootsie roll pie wafer dragée gingerbread brownie toffee.
- name: Elmo
affiliation: State University of Greater Sesame
picture: elmo
abstract: Cup single shot cappuccino, aroma variety cup rich skinny. Turkish iced mocha kopi-luwak, body fair trade grinder flavour roast rich blue mountain cream. Qui cortado, cultivar, aftertaste, grounds con panna aftertaste sit mazagran extraction as shop.
tutorials:
- name: Recess
speakers:
- name: Dora Marquez
affiliation: Mexico City University
picture: dora
abstract: Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.
- name: The Doctor
affiliation: Gallifrey Institute of Time Travel
picture: doctor
abstract: There was a war. A Time War. The Last Great Time War. My people fought a race called the Daleks, for the sake of all creation. And they lost. We lost. Everyone lost. They're all gone now. My family. My friends. Even that sky. People assume that time is a strict progression of cause-and-effect...
---
<h3>Invited speakers</h3>
{% for speaker in page.invited %}
<div class="speaker">
<div class="photograph">
<img src="images/speakers/{{ speaker.picture }}.jpg" />
</div>
<div class="speaker-info">
<span class="speaker-name">{{ speaker.name }}</span>
<span class="speaker-affiliation">{{ speaker.affiliation }}</span>
<span class="speaker-abstract">{{ speaker.abstract }}</span>
</div>
</div>
{% endfor %}
<h3>Tutorial speakers</h3>
{% for track in page.tutorials %}
<h4>{{ track.name }}</h4>
{% for speaker in track.speakers %}
<div class="speaker">
<div class="photograph">
<img src="images/speakers/{{ speaker.picture }}.jpg" />
</div>
<div class="speaker-info">
<span class="speaker-name">{{ speaker.name }}</span>
<span class="speaker-affiliation">{{ speaker.affiliation }}</span>
<span class="speaker-abstract">{{ speaker.abstract }}</span>
</div>
</div>
{% endfor %}
{% endfor %}