-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspeakers.html
33 lines (31 loc) · 1.01 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
---
layout: default
---
<div class="bg"></div>
{% assign live_speakers = site.speakers | sort:"position" | where:'live', true %}
{% for speaker in live_speakers %}
<section class="card speaker-card">
<div class="speaker-pic">
<a href="{{ speaker.url }}"><img src="{{ speaker.pic }}" alt="{{ speaker.name }}"></a>
</div>
<div class="speaker-desc">
<a class="speaker-link" href="{{ speaker.url }}">
<h2 class="speaker-name">{{ speaker.name }}</h2>
<p class="speaker-title">{{ speaker.talktitle }}</p>
</a>
</div>
</section>
{% endfor %}
{% if live_speakers.size < 9 %}
<section class="card speaker-card">
<div class="speaker-pic">
<img class="placeholder-pic" src="{{ 'assets/speakers/someone.jpg' | relative_url }}" alt="someone">
</div>
<div class="speaker-desc">
<p class="speaker-title">
More names coming every day!
<a href="https://twitter.com/cssconfbudapest">Follow us at @cssconfbudapest</a> for updates.
</p>
</div>
</section>
{% endif %}