-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.html
More file actions
223 lines (218 loc) · 9.36 KB
/
Copy pathschedule.html
File metadata and controls
223 lines (218 loc) · 9.36 KB
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
---
layout: default
title: Schedule
description: >-
Full program schedule for FacultyHack@Gateways 2026 — virtual training
sessions, the in-person Gateways 2026 conference, and the standard
daily session format.
---
<section class="schedule" aria-labelledby="schedule-heading">
<div class="wrapper">
<div class="page-hero__top">
{% include site-logo.html %}
<div>
<h1 id="schedule-heading">Schedule</h1>
<p>
FacultyHack@Gateways 2026 runs as six virtual training sessions in
August, followed by the in-person Gateways 2026 Conference in
Washington, D.C. in September. All virtual session times are
Eastern Time (ET).
</p>
</div>
</div>
<section aria-labelledby="virtual-sessions-heading">
<h2 id="virtual-sessions-heading">Virtual Training Sessions</h2>
<p>
Six sessions, Mondays, Wednesdays, and Fridays, August 3–14,
6:00–8:00 PM ET. Every session below joins on the same Zoom
link —
<a href="https://us06web.zoom.us/meeting/tZckf-utqTMtE90bh-HWz37ssv9N-XJaaHr5/ics?icsToken=DHw_D6w7wh0yL4EkyAAALAAAAPWyX5uLCc37uNProQ74N7idn0iuIuRIkqY4gPCO5SvaETrRYGweoQ-c_uxq3cBcV4YRpvYjNbTnrFnwNzAwMDAwMQ&meetingMasterEventId=vPIdF73hT1quiycY45QzCA">add the recurring event to your calendar (.ics)</a>
so you don't have to look it up each time. Click a date to collapse
it. See "Standard Daily Flow" below for how each session's two
hours are broken down.
</p>
<div class="resource-toolbar">
<div class="resource-toolbar__field">
<label for="schedule-search">Search sessions</label>
<input
type="search"
id="schedule-search"
name="q"
placeholder="e.g. topic, presenter, resource…"
autocomplete="off"
>
</div>
<div class="resource-toolbar__field">
<label for="schedule-jump">Jump to session</label>
<select id="schedule-jump">
<option value="">Choose a date…</option>
{% for session in site.data.schedule.virtual_sessions %}
<option value="{{ session.date | slugify }}">{{ session.date }}</option>
{% endfor %}
</select>
</div>
<p id="schedule-count" class="resource-toolbar__status" aria-live="polite"></p>
</div>
<div class="schedule-timeline" id="virtual-sessions-timeline">
{% for session in site.data.schedule.virtual_sessions %}
{% assign session_slug = session.date | slugify %}
{% assign session_dir = "/assets/files/schedule/" | append: session_slug | append: "/" %}
{% assign session_files = "" | split: "" %}
{% for file in site.static_files %}
{% if file.path contains session_dir %}
{% assign session_files = session_files | push: file %}
{% endif %}
{% endfor %}
{% assign session_files = session_files | sort: "name" %}
{% assign session_time = "6:00–8:00 PM ET" %}
{% if session.pre_session %}
{% assign pre_session_start = session.pre_session.time | split: "–" | first %}
{% assign session_time = pre_session_start | append: "–8:00 PM ET" %}
{% endif %}
<details class="schedule-block" id="{{ session_slug }}" open>
<summary class="schedule-block__summary">
<span class="schedule-block__datetime">
<span class="schedule-block__date">{{ session.date }}</span>
<span class="schedule-block__time">{{ session_time }}</span>
</span>
<span class="schedule-block__actions">
<a class="button button--primary button--small" href="https://us06web.zoom.us/launch/jc/83982578799">
<i class="fa-solid fa-video" aria-hidden="true"></i>
Join Zoom
</a>
<i class="schedule-block__chevron fa-solid fa-chevron-down" aria-hidden="true"></i>
</span>
</summary>
<div class="schedule-block__body">
{% if session.pre_session %}
<div class="schedule-block__event">
<h3 class="schedule-block__event-name">
Pre-Session
<span class="schedule-block__event-time">{{ session.pre_session.time }}</span>
</h3>
<p>{{ session.pre_session.focus }}</p>
</div>
{% endif %}
<div class="schedule-block__event">
<h3 class="schedule-block__event-name">
Announcements
<span class="schedule-block__event-time">6:00–6:30 PM</span>
</h3>
<p>{{ session.announcements }}</p>
</div>
<div class="schedule-block__event">
<h3 class="schedule-block__event-name">
Mentor Time
<span class="schedule-block__event-time">6:30–7:00 PM</span>
</h3>
<p>{{ session.mentor_time }}</p>
</div>
<div class="schedule-block__event">
<h3 class="schedule-block__event-name">
Training
<span class="schedule-block__event-time">7:00–8:00 PM</span>
</h3>
<p>{{ session.training }}</p>
</div>
{% if session.recap %}
<div class="schedule-block__event">
<h3 class="schedule-block__event-name">Session Recap</h3>
<details class="schedule-block__recap">
<summary class="schedule-block__recap-summary">{{ session.recap.title }}</summary>
<div class="schedule-block__recap-body">
{% if session.recap.intro %}
<p>{{ session.recap.intro }}</p>
{% endif %}
{% if session.recap.highlights %}
<h4 class="schedule-block__recap-highlights-heading">Session Highlights</h4>
<ul class="schedule-block__recap-highlights">
{% for item in session.recap.highlights %}
<li><strong>{{ item.label }}:</strong> {{ item.text }}</li>
{% endfor %}
</ul>
{% endif %}
</div>
</details>
</div>
{% endif %}
{% if session.resources %}
<div class="schedule-block__event">
<h3 class="schedule-block__event-name">Resources</h3>
<ul class="resource-list">
{% for resource in session.resources %}
{% include resource-item.html resource=resource default_icon="solid:link" %}
{% endfor %}
</ul>
</div>
{% endif %}
{% if session_files.size > 0 %}
<div class="schedule-block__event">
<h3 class="schedule-block__event-name">Files</h3>
<ul class="resource-list">
{% for file in session_files %}
{% include session-file-item.html file=file %}
{% endfor %}
</ul>
</div>
{% endif %}
</div>
</details>
{% endfor %}
</div>
</section>
<section aria-labelledby="conference-heading">
<h2 id="conference-heading">Gateways 2026 Conference (In-Person)</h2>
<p>
September 23–25, 2026 in Washington, D.C. Travel support is
provided — see the
<a href="https://sciencegateways.org/gateways2026">Gateways 2026 Conference site</a>
for full conference details.
</p>
<div class="schedule-timeline">
{% for item in site.data.schedule.conference %}
<details class="schedule-block"{% if forloop.first or item.open %} open{% endif %}>
<summary class="schedule-block__summary">
<span class="schedule-block__datetime">
<span class="schedule-block__date">{{ item.date }}</span>
</span>
<span class="schedule-block__actions">
<i class="schedule-block__chevron fa-solid fa-chevron-down" aria-hidden="true"></i>
</span>
</summary>
<div class="schedule-block__body">
<div class="schedule-block__event">
<h3 class="schedule-block__event-name">{{ item.event }}</h3>
<p>{{ item.deliverables }}</p>
</div>
</div>
</details>
{% endfor %}
</div>
</section>
<section aria-labelledby="daily-flow-heading">
<h2 id="daily-flow-heading">Standard Daily Flow (6:00–8:00 PM ET)</h2>
<div class="table-scroll">
<table>
<caption class="visually-hidden">Breakdown of a standard virtual session's two-hour block</caption>
<thead>
<tr>
<th scope="col">Time</th>
<th scope="col">Segment</th>
<th scope="col">Focus</th>
</tr>
</thead>
<tbody>
{% for block in site.data.schedule.daily_flow %}
<tr>
<th scope="row">{{ block.time }}</th>
<td>{{ block.activity }}</td>
<td>{{ block.focus }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</section>
</div>
</section>
<script src="{{ '/assets/js/schedule.js' | relative_url }}" defer></script>