This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
speakers.html
50 lines (41 loc) · 1.49 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
---
layout: page
title: Speakers
sub_title: All StoryLab Speakers
---
<section class="section-speakers">
<div class="container">
<div class="section-body">
<div class="profile-thumbs">
{% for speaker in site.data.speakers %}
<div class="profile-thumb">
<div class="profile-image">
<img src="{% if speaker.img == null %}/img/presentation.png{% else %}{{ speaker.img }}{% endif %}" alt="">
<div class="profile-overlay">
<div class="profile-overlay-inner">
<div class="socials">
<ul>
<li>
<a href="https://twitter.com/{{ speaker.twitter }}" target="_blank" rel="noopener">
<i class="ico-twitter-large"></i>
</a>
</li>
</ul>
</div><!-- /.socials -->
</div><!-- /.profile-overlay-inner -->
</div><!-- /.profile-overlay -->
</div><!-- /.profile-image -->
<h3 class="profile-title">
{{ speaker.name }}
</h3><!-- /.profile-title -->
<div class="profile-meta">
{{ speaker.org }} <br>
<span>{{ speaker.position }}</span>
</div><!-- /.profile-meta -->
</div><!-- /.profile-thumb -->
{% endfor %}
</div><!-- /.profile-thumbs -->
</div><!-- /.section-body -->
</div><!-- /.container -->
</section>
{% include section-partners.html %}