-
Notifications
You must be signed in to change notification settings - Fork 6
/
speakers.html
56 lines (54 loc) · 2.61 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
---
layout: default
title: "Speakers - Heart of Clojure"
permalink: /speakers
---
<div class="mv5">
<div class="lh-copy f4">
<p class="tc mw7 center">We're very excited to present the speakers below at Heart of Clojure 2019.</p>
<!-- <p class="tc mw7 center">Note that this list isn't yet complete, to stay in the loop, <a class="hoc-link" href="https://twitter.com/heartofclojure">follow @heartofclojure.</a></p>
-->
<div class="bg-white">
{% assign published = site.data.speakers | where:"public","true" | sort: 'id' %}
{% for speaker in published %}
<div class="cf mw8 center pt6" id="{{speaker.id}}">
<div class="fl-m fl-l w-third-m w-third-l pa4">
<img alt="{{speaker.name}}" class="w-100 mt4" src="{{speaker.img}}" />
<span class="db pink-t60 b tc">{{speaker.name}}</span>
{% if speaker.url %}
<a class="f6 db tc link black-60" href="{{speaker.url}}">
{{speaker.url}}
</a>
{% endif %}
<span class="db tc">
{% if speaker.twitter %}
<a href="https://twitter.com/{{speaker.twitter}}">
<img class="pa2" src="https://icon.now.sh/twitter/e25f7d/24">
</a>
{% endif %}
{% if speaker.github %}
<a href="https://github.com/{{speaker.github}}">
<img class="pa2" src="https://icon.now.sh/github/e25f7d/24">
</a>
{% endif %}
</span>
</div>
<div class="fl-m fl-l w-two-thirds-m w-two-thirds-l pa3">
<div class="bg-g{% cycle 1, 2, 3, 4 %}">
<h2 class="mv0 blend-screen bg-white pr5-ns">
{% if speaker.keynote %}
<span class="ph2 pv1 br2 nunito ttu f6 fw9 white bg-black">keynote</span>
<br>
{% endif %}
{{speaker.title}}
<a href="#{{speaker.id}}"><img src="https://icon.now.sh/link/24"></a>
</h2>
</div>
<p>{{speaker.abstract}}</p>
<p class="f5"><b class="pink-t60">About {{speaker.name | split:' ' | first}}:</b> {{speaker.bio}}</p>
</div>
</div>
{% endfor %}
</div>
</div>
</div>