forked from csvconf/csvconf.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeakers.html
64 lines (55 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
layout: default
title: Speakers
permalink: /2021/speakers/
summary: yes
---
<h1>Speakers</h1>
<p class="speakers-intro">
We have assembled an exciting lineup of speakers – of data makers and enthusiasts representing academia, science, journalism, government, and open source projects - for csv,conf,v6.
</p>
<table class="speakers">
{% for speaker in site.data.2021_speakers %}
<tr class="speaker" id="{{ speaker.name | slugify }}">
<td class="about">
{% if speaker.img %}
<img class="image"
style="background-image:url(/img/speakers-2021/{{ speaker.id }}.jpg)"/>
{% else %}
<img class="image"
style="background-image:url(/img/speakers-2021/black_comma.png)"/>
{% endif %}
<span class="name">
{% if speaker.twitter %}
<a href="https://twitter.com/{{speaker.twitter}}">{{ speaker.name }}</a>
{% else %}
{{ speaker.name }}
{% endif %}
</span>
</td>
<td>
<p class="title">{{ speaker.title }}</p>
<p class="abstract">{{ speaker.abstract }}</p>
<span>
{% if speaker.github %}
<a href="https://github.com/{{speaker.github}}">Find {{ speaker.name }}'s work on GitHub</a> ·
{% else %}
{% endif %}
</span>
<span>
{% if speaker.slides_url %}
<a href="{{speaker.slides_url}}" target="_blank">View Talk Slides</a> ·
{% else %}
{% endif %}
</span>
<span>
{% if speaker.talk_url %}
<a href="{{speaker.talk_url}}" target="_blank">Watch Talk</a>
{% else %}
{% endif %}
</span>
</td>
</tr>
{% endfor %}
</table>
<hr>