-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathschedule.html
172 lines (151 loc) · 6.48 KB
/
schedule.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
---
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-schedule"
---
<!-- ## SCHEDULE SECTION ## -->
<section class="schedule-section" id="schedule">
<div class="qcTabTitle qcContainer clearfix">
<div class="col-4 col">
<h2 class="section-title">SCHEDULE</h2>
</div>
<div class="col-8 col">
<p class="qcTabDesc">
By the end of this intensive 4-day conference for technologists with marginalized genders, each attendee will possess and polish the skills necessary
to fully own their expertise as thought leaders, conference speakers, and
open source contributors.
</p>
</div>
</div>
<div class="hentry qcContainer">
<div id="qcScheduleContentTabs" class="qcPageContentTabs qcScheduleTabs clearfix">
<!-- ## SCHEDULE DAY LINKS ## -->
<ul class="wsc-schedule-tabs clearfix">
{% for day in site.data.schedule_display_map %}
{% if forloop.first %}
<li class="active">
{% else %}
<li>
{% endif %}
<a href="#{{ day.schedule_key }}">{{ day.title_display }}</a>
</li>
{% endfor %}
</ul>
<!-- day loop -->
{% for day in site.data.schedule_display_map %}
<!-- day header -->
<div id="{{ day.schedule_key }}">
<div class="box">
<!-- day header date -->
<div class="conf_dates qcTabHead clearfix">
<div class="col-12 col">
<i class="icon-calendar-1 icon"></i>
{{ day.date_display }}
</div>
</div>
<!-- day details -->
<ul class="qcScheduleList">
<!-- section loop -->
{% for section in site.data.schedule[day.schedule_key] %}
{% assign section_key = forloop.index %}
<a name="{{day.schedule_key}}--{{ section_key }}"></a>
<!-- track split header -->
{% if section.size > 1 %}
<li class="no-toggle schedule-track-split">
<div class="clearfix">
<div class="qcSubScheduleContentTabs qcScheduleTabs qcPageContentTabs clearfix">
<ul class="clearfix tracks-{{ section.size }}">
{% for track in section %}
{% assign track_key = track[1].first.track_key %}
{% if forloop.first %}
<li class="active">
{% else %}
<li>
{% endif %}
<a href="#{{day.schedule_key}}--{{ section_key }}--{{ track_key }}">
{{ track[0] }}
</a>
</li>
{% endfor %}
</ul>
{% endif %}
<!-- track details -->
{% for track in section %}
{% assign track_key = track[1].first.track_key %}
<!-- track details split head -->
{% if section.size > 1 %}
<div id="{{day.schedule_key}}--{{ section_key }}--{{ track_key }}" class="track-inner-details">
<div class="box">
<ul class="qcScheduleList">
{% else %}
<a name="{{day.schedule_key}}--{{ section_key }}--{{ track_key }}"></a>
{% endif %}
<!-- items in track loop -->
{% for item in track[1] %}
{% assign talk = site.data.hash_of_talks[item.title_key] %}
<!-- item li tag -->
{% if talk.description %}
<li class="toggle {{ item.talk_type }}" id="{{ item.key }}">
{% else %}
<li class="no-toggle {{ item.talk_type }}" id="{{ item.key }}">
{% endif %}
<!-- talk details -->
<div class="clearfix">
<!-- talk time and title -->
<div class="col-8 col">
<p class="time">{{ item.time }}</p>
<h3>{{ item.title }}</h3>
<small>{{ item.location }}</small>
</div>
<!-- END talk time and title -->
<!-- talk speakers -->
<div class="col-4 col multiple-speakers">
{% include talk_speaker_list.html item=item %}
</div>
<!-- END talk speakers -->
</div>
<!-- END talk details -->
<!-- talk description -->
{% if talk.description %}
<div class="qcTogContent">
<p>{{ talk.description }}</p>
</div>
{% endif %}
<!-- END talk description -->
</li>
<!-- END item li tag -->
{% endfor %}
<!-- END items in track loop -->
{% if section.size > 1 %}
</ul>
</div>
</div>
{% endif %}
<!-- END track details split head -->
{% endfor %}
<!-- END track details -->
{% if section.size > 1 %}
</div>
</div>
</li>
{% endif %}
<!-- END track split header -->
{% endfor %}
<!-- END section loop -->
</ul>
<!-- END day details -->
</div>
</div>
<!-- END day header -->
{% endfor %}
<!-- END day loop -->
</div>
</div>
</section>