-
Notifications
You must be signed in to change notification settings - Fork 71
/
index.html
executable file
·254 lines (224 loc) · 11 KB
/
index.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
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
---
layout: default
---
<div class='row'>
<div class='col-sm-12'>
<p class='h2'>Chicago's weekly event to build, share & learn about civic tech<br /><br /></p>
</div>
</div>
{% assign upcoming_posts = site.categories['events'] | where_exp:"post", "post.date >= site.time" | sort: 'date' %}
{% for post in upcoming_posts limit: 1 %}
{% assign next_date = post.date | date: "%A, %B %-d, %Y" %}
{% comment %}
{% include weekoff_4th.html date_off="July 2nd" date_back= next_date %}
{% include weekoff_election.html date_off="Nov 5th" date_back=next_date %}
{% include weekoff_thanksgiving.html date_off="November 21st" date_back=next_date %}
{% include weekoff_endofyear.html date_back= next_date new_year="2024" youtube_playlist="https://youtube.com/playlist?list=PL_dBjjdnIbKyLtNYpH9rRXoDGr6WGE2MO" %}
{% endcomment %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><b>Next Chi Hack Night</b> <a class='pull-right' href='/events/'>All events »</a></h3>
</div>
<div class="panel-body">
<div class='row'>
<div class='col-sm-7'>
<strong>{{ post.date | date: "%l:%M%P" }} {{ post.date | date: "%A, %B %-d, %Y" }}</strong>
<h2 class='no-margin-top'>
<small>#{{post.event_id}}</small>
<a href="{{post.url}}">{{post.title}}</a>
</h2>
{% if post.description %}
<p>{{ post.description }}</p>
{% endif %}
<br />
{% if post.rsvp_url %}
<a class='btn btn-success' href='{{post.rsvp_url}}'><i class='fa fa-check-square-o'></i> RSVP (required)</a>
{% endif %}
<a class='btn btn-link btn-lg' href="{{post.url}}"><i class='fa fa-info-circle-square-o'></i> Details</a>
{% if post.layout == "remote_event_openhack" %}
<a class='btn btn-link btn-lg' href="https://bit.ly/chi-hack-night" target='_blank'><i class='fa fa-play-circle'></i> Chi Hack Night Zoom Call @ 7pm</a>
{% elsif post.layout == "technexus_event" %}
<a class='btn btn-link btn-lg' href="https://www.google.com/maps/place/TechNexus+Venture+Collaborative/@41.8835673,-87.6394085,17z/data=!3m1!4b1!4m5!3m4!1s0x880e2d5be57f04c5:0xa87e47e177660090!8m2!3d41.8835673!4d-87.6372198" target='_blank'><i class='fa fa-map-marker'></i> TechNexus</a>
{% if post.remote_url %}
<a class='btn btn-link' href="{{post.remote_url}}" target='_blank'><i class='fa fa-play-circle'></i> Zoom @ 6:30pm</a>
{% else %}
<a class='btn btn-link' href="https://youtube.com/chihacknight/live" target='_blank'><i class='fa fa-play-circle'></i> Livestream @ 6:30pm</a>
{% endif %}
{% else %}
{% if post.remote_url %}
<a class='btn btn-link' href="{{post.remote_url}}" target='_blank'><i class='fa fa-play-circle'></i> Zoom @ 7pm</a>
{% else %}
<a class='btn btn-link' href="https://youtube.com/chihacknight/live" target='_blank'><i class='fa fa-play-circle'></i> Livestream @ 7pm</a>
{% endif %}
{% endif %}
<a class='btn btn-link btn-lg' href="{{post.agenda}}" target='_blank'>Agenda</a>
</div>
<div class='col-sm-5'>
{% if post.image and post.description.size > 0 %}
<a href="{{post.url}}"><img class='img-responsive img-thumbnail' src='{{post.image}}' alt='{{post.title}}' /></a>
{% if post.image_credit %}
<br /><small class='pull-right'><em>Photo: {{ post.image_credit }}</em></small>
{% endif %}
{% endif %}
</div>
</div>
</div>
</div>
{% endfor %}
{% assign past_events = site.categories['events'] | where_exp:"post", "post.date < site.time" %}
{% for post in past_events limit: 1 %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><b>Last Chi Hack Night</b> <a class='pull-right' href='/events/'>All events »</a></h3>
</div>
<div class="panel-body">
<div class='row'>
<div class='col-sm-7'>
<strong>{{ post.date | date: "%l:%M%P" }} {{ post.date | date: "%A, %B %-d, %Y" }}</strong>
<h2 class='no-margin-top'>
<small>#{{post.event_id}}</small>
<a href="{{post.url}}">{{post.title}}</a>
</h2>
{% if post.description %}
<p>{{ post.description }}</p>
{% endif %}
<a class='btn btn-link btn-lg' href="{{post.url}}"><i class='fa fa-info-circle-square-o'></i> Details</a>
{% if post.youtube_id %}
<a class='btn btn-link btn-lg' href="https://www.youtube.com/watch?v={{post.youtube_id}}" target='_blank'><i class='fa fa-play-circle'></i> YouTube Video</a>
{% endif %}
</div>
<div class='col-sm-5'>
{% if post.image and post.description.size > 0 %}
<a href="{{post.url}}"><img class='img-responsive img-thumbnail' src='{{post.image}}' alt='{{post.title}}' /></a>
{% if post.image_credit %}
<br /><small class='pull-right'><em>Photo: {{ post.image_credit }}</em></small>
{% endif %}
{% endif %}
</div>
</div>
</div>
</div>
{% endfor %}
{% assign future_events = upcoming_posts | shift %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><b>Upcoming Events</b> <a class='pull-right' href='/events/'>All events »</a></h3>
</div>
<div class="panel-body">
<small>
{% for post in future_events %}
{{ post.date | date: "%A, %B %-d, %Y" }} {{ post.date | date: "%l:%M%P" }}
<a href="{{post.url}}">{{post.title}}</a>
<br />
{% endfor %}
</small>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><b>Latest blog post</b> <a class='pull-right' href='/blog/'>All posts »</a></h3>
</div>
<div class="panel-body">
{% for post in site.categories['blog'] %}
{% if post.featured %}
<div class='row'>
<div class='col-sm-4'>
{% if post.image %}
<img class='img-thumbnail img-responsive' src='{{post.image}}' alt='{{ post.title }}' />
{% else %}
<img class='img-thumbnail img-responsive' src='/images/logo/logo.png' alt='{{ post.title }}' />
{% endif %}
<br /><br />
</div>
<div class='col-sm-8'>
<h4>
<a href='{{post.url}}'>{{ post.title }}</a>
</h4>
<p>
<small>{{ post.date | date: "%b %-d, %Y" }} by
<a class='muted' href='{{post.author_url}}'>{{post.author}}</a>
{% if post.author2 %}
, <a class='muted' href='{{post.author2_url}}'>{{post.author2}}</a>
{% endif %}
</small>
<br />
{{ post.description | markdownify }} <a href='{{post.url}}'>Read more »</a>
</p>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>
<div class='row'>
<div class='col-sm-12'>
<h2 id='about'>Welcome!</h2>
<p><iframe width="100%" height="450" src="https://www.youtube.com/embed/pkxFNGQ-qdw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe></p>
<p>Join us remotely every Tuesday from 7-10pm on our <a href='https://www.youtube.com/chihacknight/live'>YouTube livestream</a> and <a href='http://slackme.chihacknight.org/'>Slack channel</a> to hear from <a href='/events/index.html'>amazing speakers</a>, and <a href='/breakouts.html'>learn by doing!</a> <a href='/about.html#everyone'><strong>Everyone is welcome!</strong></a></p>
<p>We are a group of thousands of designers, academic researchers, data journalists, activists, policy wonks, web developers and curious citizens who want to make our city more just, equitable, transparent and delightful to live in through data, design and technology. <a href='/about.html'>More about us »</a></p>
<p>Have a talk you'd like to give at Chi Hack Night? <a href='/speaker-submissions.html'>Learn more about speaker submissions »</a></p>
<hr />
<h2 id='community'>Join our community</h2>
<p>Chi Hack Night is a central hub for <a href='/community.html'>Chicago's civic tech community</a>. Here's the three best ways to get involved:</p>
<div class='row text-center'>
<div class='col-sm-4'>
<div class='well'>
<h1><i class='fa fa-fw fa-calendar'></i></h1>
<p>1. Go to Chi Hack Night. <a href='{{site.rsvp_url}}'>We meet every Tuesday at 7pm</a></p>
</div>
</div>
<div class='col-sm-4'>
<div class='well'>
<h1><i class='fa fa-fw fa-envelope'></i></h1>
<p>2. <a href='http://eepurl.com/z65hn'>Subscribe to updates</a> on upcoming speakers and events</p>
</div>
</div>
<div class='col-sm-4'>
<div class='well'>
<h1><i class='fa fa-fw fa-group'></i></h1>
<p>3. Browse our <a href='/breakouts.html'>weekly breakouts</a> to find your group</p>
</div>
</div>
</div>
<hr />
<div class='sponsors'>
<h2 id='sponsors'>Sponsors</h2>
<p>Chi Hack Night is a non-profit organization, run by our <a href='/board-of-directors.html'>Board of Directors</a> and supported by our amazing sponsors and donors.</p>
<!-- sponsors list -->
<div class='row'>
<div class='col-sm-3'>
<div itemscope itemtype='http://schema.org/Organization' class='sponsor-details'>
<a href='https://teamworking.vc/' itemprop='url'>
<img src='images/sponsors/teamworking-logo.jpg' alt='TeamWorking by TechNexus' itemprop='logo' class='img-responsive' />
<span itemprop='name'>TeamWorking by TechNexus</span>
</a>
</div>
</div>
<div class='col-sm-3'>
<div itemscope itemtype='http://schema.org/Organization' class='sponsor-details'>
<a href='https://datamade.us' itemprop='url'>
<img src='images/sponsors/datamade.png' alt='DataMade' itemprop='logo' class='img-responsive' />
<span itemprop='name'>DataMade</span>
</a>
</div>
</div>
<div class='col-sm-3'>
<div itemscope itemtype='http://schema.org/Organization' class='sponsor-details'>
<a href='https://www.comptia.org/' itemprop='url'>
<img src='images/sponsors/comptia.png' alt='CompTIA' itemprop='logo' class='img-responsive' />
<span itemprop='name'>CompTIA</span>
</a>
</div>
</div>
<div class='col-sm-3'>
<div itemscope itemtype='http://schema.org/Organization' class='sponsor-details'>
<a href='https://forgood.io/' itemprop='url'>
<img src='images/sponsors/forgood.png' alt='For Good Advisory' itemprop='logo' class='img-responsive' />
<span itemprop='name'>For Good Advisory</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>