-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtalks.html
48 lines (44 loc) · 1.71 KB
/
talks.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
---
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-talks"
---
<section class="schedule-section anchor-section" id="talks">
<div class="qcTabTitle qcContainer clearfix">
<div class="row middle-sm">
<div class="col-xs-12 col-sm-6">
<h2 class="section-title">Talks</h2>
</div>
</div>
</div>
<div class="hentry qcContainer">
<ul class="qcScheduleList">
{% for talk in site.data.talks %}
{% if talk.talk_order != -1 and talk.talk_type != "food" and talk.talk_type != "post-conference-event" and talk.talk_type != null %}
<li class="notoggle">
<div class="clearfix">
<div class="col-10 col">
<h3>{{ talk.title }}</h3>
{% include talk_speaker_list.html item=talk %}
</div>
</div>
<p>
{% if talk.description %}
{{ talk.description }}
{% else %}
<i>Details coming soon!</i>
{% endif %}
</p>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</section>