-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
768 lines (723 loc) · 39.1 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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>The Spatial Community</title>
<!-- Bootstrap Core CSS -->
<link href="_assets/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="_assets/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- Theme CSS -->
<link href="css/agency.css" rel="stylesheet">
<link href="css/events.css" rel="stylesheet">
<link href="css/site.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav id="mainNav" class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="http://www.thespatialcommunity.org"><span class="fa fa-globe"></span></a>
</li>
<li>
<a class="page-scroll" href="#about">About</a>
</li>
<li>
<a class="page-scroll" href="#join">Join</a>
</li>
<li>
<a class="page-scroll" href="#upcoming-events">Events</a>
</li>
<li>
<a class="page-scroll" href="#past-events">Archives</a>
</li>
<li>
<a class="page-scroll" href="#team">Team</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="intro-text">
<div class="intro-lead-in">A community on Slack: over 6,600
members, and growing</div>
<div class="intro-heading">The Spatial Community</div>
<a href="#join" class="page-scroll btn btn-xl">
Join The Community</a>
<a href="#upcoming-events" class="page-scroll btn btn-xl">
Upcoming Events</a>
<a href="http://thespatialcommunity.slack.com" class="btn btn-xl">
Go straight to Slack</a>
</div>
</div>
</header>
<!-- About Section -->
<section id="about">
<div class="container large">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">About the Community</h2>
</div>
<div class="row large">
The Spatial Community is a Slack-based community of over
6,600 geospatial enthusiasts: developers, GIS professionals,
students, and hobbyists all coming together to share a
common interest in all things spatial. With members from
all over the world, The Spatial Community is a global
geo-party with round-the-clock activity.
<p></p>
Whether you're looking to get answers or offer support, or
just have a casual conversation with fellow geo-geeks,
there's a home for you in The Spatial Community. A
dedicated <code>#python</code> or <code>#postgis</code>
fan? There's a channel for that. Interested in joining a
geospatial <code>#bookclub</code>? We've got that covered.
Looking to unwind from a long day in the spatial analysis
trenches with some <code>#videogames</code> or
<code>#food</code>? We've got that too.
<p></p>
Sound like fun? <a href="#join">Join us today!</a>
</div>
</div>
</div>
</section>
<!-- Join Section -->
<section id="join" class="bg-light-gray">
<div class="container large">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Join Us</h2>
<h3 class="section-subheading text-muted large">Ready to join the
community? Read our <a href="https://github.com/TheSpatialCommunity/documents/blob/master/COC.md" target="_new">Code of Conduct</a>,
then request an invitation to the Slack team below</h3>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-check fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Code of Conduct</h4>
<p class="text-muted text-left large">Agreeing to common ground set forth
in our <a
href="https://github.com/TheSpatialCommunity/documents/blob/master/COC.md" target="_new">Code
of Conduct</a> is part of what makes our group a
<em>community</em>. To participate in The Spatial
Community, we ask everyone to agree to this code.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-slack fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Request an Invite</h4>
<p class="text-muted text-left large">Read the Code of Conduct and like
what you see? Excited to make 6,600+ other geospatial
friends in one place? Got a question for #python or need
help from the gurus in #geoserver? Enter your email address here to request an invitation:</p>
<form class="form-inline" id="email-form">
<div class="form-group">
<input type="email" class="form-control"
name="email" id="email_address" placeholder="test@example.com">
</div>
<button type="submit" class="btn btn-xl" id="submit_button">Request invitation</button>
</form>
<p><a href="https://thespatialcommunity.slack.com">Signing in from a new device?</a></p>
<p>Already have an account and <a href="https://thespatialcommunity.slack.com/forgot/signin">need to recover your password?</a></p>
<div class="form_submitted text-muted">
</div>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-users fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Meet the Admins</h4>
<p class="text-muted text-left large">Contrary to popular belief, The
Spatial Community is not run solely by a collection of
Slack bots.
<a href="#team">Meet the admins</a> who work hard behind the scenes to keep
everything humming along smoothly.</p>
</div>
</div>
<!--<div class="row col-md-12 text-center">
<div id="temp_signup" style="font-weight:bold">
<a class="btn btn-xl" href="https://join.slack.com/t/thespatialcommunity/shared_invite/zt-ij2ygqzm-50gLh_uJzZ3X5gFUopsYrw">Click here to join after looking through our Code of Conduct</a>
</div>
</div> <!-- temp signup form - remove when superinvite is back -->
</div>
</section>
<!-- Event Section -->
<section id="upcoming-events">
<div class="container large">
<div class="row">
<div class="[ col-xs-12 col-sm-offset-2 col-sm-8 ]">
<span class="text-center">
<h2 class="section-heading">Recent or Upcoming Events</h2>
<h3 class="section-subheading">Check back often - new events posted regularly!</h3>
</span>
<ul class="event-list">
<li>
<div class="info">
<h2 class="title">2018 Conference Giveaways</h2>
<p class="desc">
2018 giveways have so far included OpenStreetMap US State of the Map and the Esri Developer summit!
</p>
<ul>
<li style="width:50%;"><a href="/giveaways.html#giveaway_details"><span class="fa fa-globe"></span> Details</a></li>
</ul>
</div>
</li>
<li>
<div class="info">
<h2 class="title">2018 Ask Me Anything Series</h2>
<br>
<div>
<ul style="list-style-type:square">
<li>
<strong>Steve Pousty</strong> Director of Developer Advocacy at <a href="https://www.redhat.com/en">Red Hat.</a>
<strong>Feb 16, 2018 @ 10AM PST.</strong>
</li>
<li>
<strong>Ryan John King</strong> Co-founder, CEO of <a href="https://foam.space/">FOAM</a>, entrepreneur in proof of location protocol.
<strong>Feb 23, 2018 @ 9AM PST.</strong>
</li>
</ul>
</div>
</div>
</li>
</ul>
<!--
<ul class="event-list">
<li>
<time datetime="2016-11-17">
<span class="day">17</span>
<span class="month">Nov</span>
<span class="year">2016</span>
<span class="time">1-2pm CST</span>
</time>
<div class="info">
<h2 class="title">AMA</h2>
<p class="desc">
<strong>Andy Dearing</strong>, CEO <a href="http://www.boundlessgeo.com">Boundless Spatial</a>, joins us to answer all your Open Source GIS questions.
</p>
<ul>
<li class="text-right">
<a href="https://twitter.com/share" class="twitter-share-button"
data-text="Join @boundlessgeo's Andy Dearing at The Spatial Community for an #AMA: 1pm CST, Nov 17!"
data-url="http://thespatialcommunity.org"
data-hashtags="thespatialcommunity"
data-show-count="false">
<span class="fa fa-twitter"></span></a>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</li>-->
<!-- <li style="width:50%;"><a href="#website"><span class="fa fa-globe"></span> Website</a></li> -->
<!-- </ul>
</div>
</li>
</ul> -->
</div>
</div>
</div>
</section>
<!-- Past Event Section -->
<section id="past-events">
<div class="container large">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Past Events</h2>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="timeline">
<!-- Note, these alternate left/right "timeline-image" and "timeline-inverted" classes.
To go left, remove the 'class="timeline-inverted"' so that the <li item begins with just <li>.
For right side, in the top list element of the item, define it as class="timeline-inverted" -->
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Feb 2018</h4>
<h4 class="subheading">Conference Giveaway: <br>
Esri Dev Summit 2018</h4>
</div>
<div class="timeline-body">
<p class="text-muted large">Esri sponsored one
registration to the Developer Summit and additional swag for 2nd place!</a></p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Feb 16 2018</h4>
<h4 class="subheading">AMA: Steve Pousty <br>
</h4>
</div>
<div class="timeline-body">
<p class="text-muted large">Ask Me Anything with Steve Pousty, Director of Developer Advocacy at Red Hat,
formerly of deCarta, Esri dev, PhD in Ecology and much more! Thanks to <a href="https://twitter.com/TheSteve0">@TheSteve0</a>!
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Jun 1 2017</h4>
<h4 class="subheading">Conference Giveaway: <br>
FOSS4G Boston 2017</h4>
</div>
<div class="timeline-body">
<p class="text-muted large">The FOSS4G Local Organizing Committee sponsored one
registration to FOSS4G in Boston and >sparkgeo covering the entrance fee to the Gala event</a></p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Apr 7 2017</h4>
<h4 class="subheading">Conference Giveaway: <br>
PyCon 2017</h4>
</div>
<div class="timeline-body">
<p class="text-muted large">Mapbox sponsored one registration to PyCon 2017
in Portland, Oregon</a></p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Mar 14 2017</h4>
<h4 class="subheading">AMA: <br>
Azavea</h4>
</div>
<div class="timeline-body">
<p class="text-muted large"><a
href="https://www.azavea.com/">Azavea's</a>
President & CEO Robert Cheetham, VP of
Engineering Matt McFarland, and Community
Ambassador Dan Ford.</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Jan 27 2017</h4>
<h4 class="subheading">Conference Giveaway: <br>
Esri's Developer Summit</h4>
</div>
<div class="timeline-body">
<p class="text-muted large">Esri sponsored one free registration
to the Esri Developer Summit in Palm Springs, CA on March 7-10, 2017</a></p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Nov 17 2016</h4>
<h4 class="subheading">AMA: <br>
Boundless's Andy Dearing</h4>
</div>
<div class="timeline-body">
<p class="text-muted large"><a href="documents/AMAs/ama-boundless-nov2016.html">AMA
transcript</a></p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Nov 7 2016</h4>
<h4 class="subheading">AMA: <br>
Carto's Javier de la Torre</h4>
</div>
<div class="timeline-body">
<p class="text-muted large"><a href="documents/AMAs/ama-javier-carto-2016.html">AMA
transcript</a></p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Oct-Dec 2016</h4>
<h4 class="subheading">#gift_exchange_2016</h4>
</div>
<div class="timeline-body">
<p class="text-muted large">
First annual "Secret Santa" for members of
The Spatial Community. Join the channel for
more information
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>April 19 2016</h4>
<h4 class="subheading">AMA: <br>
ESRI's Andrew Turner & John Gravois</h4>
</div>
<div class="timeline-body">
<p class="text-muted large"><a href="documents/AMAs/ama-esri-20160419.html">AMA
transcript</a></p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>March 15 2016</h4>
<h4 class="subheading">AMA: <br>
Digital Globe's Shay Har-Noy</h4>
</div>
<div class="timeline-body">
<p class="text-muted large"><a href="documents/AMAs/ama-shay-03-2016.html">AMA
transcript</a></p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>November 3 2015</h4>
<h4 class="subheading">AMA: <br>
James Fee</h4>
</div>
<div class="timeline-body">
<p class="text-muted large"><a href="documents/AMAs/ama-jamesfee-11-2015.html">AMA
transcript</a></p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>September 22 2015</h4>
<h4 class="subheading">AMA: <br>
Mapbox's Tom Macwright and Eric Gunderson</h4>
</div>
<div class="timeline-body">
<p class="text-muted large"><a href="documents/AMAs/ama-mapbox-09-2015.html">AMA
transcript</a></p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive"
src="img/about/geologo.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>September 2 2015</h4>
<h4 class="subheading">AMA: <br>
What3Words' Gary Gale</h4>
</div>
<div class="timeline-body">
<p class="text-muted large"><a href="documents/AMAs/ama-w3w-sep2-2015.html">AMA
transcript</a></p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Admin Team Section -->
<section id="team" class="bg-light-gray">
<div class="container large">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Meet our Admins</h2>
<h3 class="section-subheading text-muted">The humans behind the bots</h3>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/martin.jpg" class="img-responsive img-circle" alt="">
<h4>Martin Bentley</h4>
<p class="text-muted">@mtb-za</p>
<!-- <ul class="list-inline social-buttons"> -->
<!-- <li><a href="#"><i class="fa fa-twitter"></i></a> -->
<!-- </li> -->
<!-- <li><a href="#"><i class="fa fa-facebook"></i></a> -->
<!-- </li> -->
<!-- <li><a href="#"><i class="fa fa-linkedin"></i></a> -->
<!-- </li> -->
<!-- </ul> -->
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/ted_profile.png" class="img-responsive img-circle" alt="Profile picture for Ted Chapin">
<h4>Ted Chapin</h4>
<p class="text-muted">@ted_chapin</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/mzd_profile.png" class="img-responsive img-circle" alt="Profile picture for Madison Draper">
<h4>Madison Draper</h4>
<p class="text-muted">@mzd</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/fgcarto_profile.png" class="img-responsive img-circle" alt="Profile picture for Francois Goulet">
<h4>Francois Goulet</h4>
<p class="text-muted">@fgcarto</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/nickrsan_profile.png" class="img-responsive img-circle" alt="Profile picture for Nick Santos">
<h4>Nick Santos</h4>
<p class="text-muted">@nickrsan</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<p class="large text-muted">
If you ever need help, or have a community-related
question, <strong>always</strong> feel free to reach out to
one or all of us in Slack. We're here to support you &
make The Spatial Community awesome, together.
</p>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<hr>
<h3 class="section-subheading text-muted">Special thanks to
our retired admins:</h3>
</div>
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/erik.jpg" class="img-responsive img-circle" alt="Profile picture for Erik Friesen">
<h4>Erik Friesen</h4>
<p class="text-muted">@erikfriesen</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/kathryn.png" class="img-responsive img-circle" alt="Profile picture for Kathryn Killebrew">
<h4>Kathryn Killebrew</h4>
<p class="text-muted">@kkillebrew</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/richard.png" class="img-responsive img-circle" alt="Profile picture for Richard Law">
<h4>Richard Law</h4>
<p class="text-muted">@alphabetasoup</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/langdon.jpg" class="img-responsive img-circle" alt="Profile picture for Langdon Sanders">
<h4>Langdon Sanders</h4>
<p class="text-muted">@langdon</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/kate.png" class="img-responsive img-circle" alt="Profile picture for Kate Clark">
<h4>Kate Clark</h4>
<p class="text-muted">@isostatic</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/sara.jpg" class="img-responsive img-circle" alt="Profile picture for Saa Safavi">
<h4>Sara Safavi</h4>
<p class="text-muted">@sara</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/gisdevkm_profile.png" class="img-responsive img-circle" alt="Profile picture for Kyle Morgan">
<h4>Kyle Morgan</h4>
<p class="text-muted">@gisdev-km</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/themapsmith_profile.png" class="img-responsive img-circle" alt="Profile picture for Stephen Smith">
<h4>Stephen Smith</h4>
<p class="text-muted">@themapsmith</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/robodonut_profile.png" class="img-responsive img-circle" alt="Profile picture for Daniel Smith">
<h4>Daniel Smith</h4>
<p class="text-muted">@robodonut</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/willcadell_profile.png" class="img-responsive img-circle" alt="Profile picture for Will Cadell">
<h4>Will Cadell</h4>
<p class="text-muted">@willcadell</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/julien_profile.png" class="img-responsive img-circle" alt="Profile picture for Julien Jacques">
<h4>Julien Jacques</h4>
<p class="text-muted">@julien</p>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-md-4">
<span class="copyright">Unless where otherwise noted, <br/>
all content licensed <a
href="https://creativecommons.org/licenses/by-nc/4.0/">CC
BY-NC 4.0 </a></span>
</div>
<div class="col-md-4">
<ul class="list-inline social-buttons">
<li><a href="http://twitter.com/TheSpatialComm" target="_new"><i class="fa fa-twitter"></i></a></li>
<!-- </li> -->
<!-- <li><a href="#"><i class="fa fa-facebook"></i></a> -->
<!-- </li> -->
<!-- <li><a href="#"><i class="fa fa-linkedin"></i></a> -->
<!-- </li> -->
</ul>
</div>
<div class="col-md-4">
<ul class="list-inline quicklinks">
<li><a href="https://github.com/TheSpatialCommunity/documents/blob/master/COC.md" target="_new">Code of Conduct</a>
</li>
<li><a href="https://thespatialcommunity.slack.com">Slack Team</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="_assets/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="_assets/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<!-- Theme JavaScript -->
<script src="js/agency.min.js"></script>
<script type="text/javascript">
function formSubmit(){
var email = $('#email_address').val();
$.get("https://thespatialcommunity.pythonanywhere.com/simplenewuser/" + email,
$.noop)
.always(function() {
$(".form_submitted").html("Thank you! Your request has been received - keep an eye on your inbox for an invitation. If you don't hear anything within a day, shoot us an email: thespatialcommunity@gmail.com");
$("#submit_button").prop("disabled", true);
});
return false;
};
var el = $("#email-form");
el.submit(formSubmit);
</script>
</body>
</html>