-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathspeakers.html
96 lines (88 loc) · 3.87 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
layout: conference
title: 2018 Write/Speak/Code Conference | Aug 1-4 | NYC
meta_title: 2018 Write/Speak/Code Conference Schedule
meta_description:
<!-- href: https://2018.writespeakcode.com/index.html -->
social_title: 2018 Write/Speak/Code Conference for technologists with marginalized genders
social_description: Level up your career over 4 days designed to fully own your expertise through writing, speaking, and open source.
<!-- open_graph_img: https://2018.writespeakcode.com/assets/img/write-speak-code-conference.jpg
twitter_img: https://2018.writespeakcode.com/assets/img/WSC-coral-bg.jpg -->
body_class: "conference conference-speakers"
---
<!-- ## SPEAKERS SECTION ## -->
<section class="speakers anchor-section" id="speakers">
<div class="qcContainer qcTabTitle clearfix">
<div class="row middle-sm">
<div class="col-xs-12 col-sm-6">
<h2 class="section-title">Speakers</h2>
</div>
</div>
</div>
<div class="qcContainer hentry">
<div class="speaker-grid">
<ul class="gridder clearfix">
{% for speaker in site.data.speakers %}
{% if speaker.speaker_order != -1 %}
<li id="{{speaker.key}}" class="gridder-list" data-griddercontent="#{{speaker.key}}-content">
{% if speaker.headshot_filename %}
<img src="{{ speaker.headshot_filename | prepend: "/assets/img/speakers/" | prepend: site.baseurl }}" alt="{{speaker.name}} headshot" nopin="nopin">
{% else %}
<img src="{{ "/assets/img/speakers/wsc-speak-placeholder.png" | prepend: site.baseurl }}" alt="{{speaker.name}} headshot" nopin="nopin">
{% endif %}
<div class="name-title">
<h4>{{speaker.name}}</h4>
<h5>
{{speaker.job_title}}
{% if speaker.job_title %}
at
{% endif %}
{{speaker.company}}
</h5>
</div>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
<!-- Bio content for inside the gridder -->
{% for speaker in site.data.speakers %}
{% if speaker.speaker_order != -1 %}
<div id="{{speaker.key}}-content" class="gridder-content">
<div class="row between-lg middle-sm">
<div class="col-xs-12 col-sm-3">
<h4>{{speaker.name}}</h4>
{% if speaker.pronouns %}
<small>({{speaker.pronouns}})</small>
{% endif %}
<h5>
{{speaker.job_title}}
{% if speaker.job_title %}
at
{% endif %}
{{speaker.company}}
</h5>
<ul class="spkr-social clearfix">
{% if speaker.twitter %}
<li><a href="https://twitter.com/{{speaker.twitter}}" target="_blank" rel="noopener" class="tips" title="{{speaker.name}} twitter"><i class="icon-twitter icon"></i></a></li>
{% endif %}
{% if speaker.github %}
<li><a href="https://github.com/{{speaker.github}}" target="_blank" rel="noopener" class="tips" title="{{speaker.name}} github"><i class="icon-github icon"></i></a></li>
{% endif %}
{% if speaker.linkedin %}
<li><a href="{{speaker.linkedin}}" target="_blank" rel="noopener" class="tips" title="{{speaker.name}} linkedin"><i class="icon-linkedin icon"></i></a></li>
{% endif %}
{% if speaker.website %}
<li><a href="{{speaker.website}}" target="_blank" rel="noopener" class="tips" title="{{speaker.name}} website"><i class="icon-link icon"></i></a></li>
{% endif %}
</ul>
</div>
<div class="col-xs-12 col-sm-9 col-lg-8">
<p>{{speaker.bio}}</p>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</section>