This repository has been archived by the owner on Nov 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
1040 lines (953 loc) · 43.8 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
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
layout: base
---
{% assign c = site.data.constants %}
<section id="hero" class="light color">
<!--<div id="ribbon"> Sold Out! </div>-->
<div class="overlay color"></div>
<div class="container">
<nav class="navigation navigation-social">
<ul class="navigation-bar">
<li><a href="https://twitter.com/rubyforgood"><span class="fa fa-twitter"></span></a></li>
<li><a href="https://github.com/rubyforgood"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.meetup.com/Arlington-Ruby/"><span class="fa fa-smile-o"></span></a></li>
<li><a href="https://t.co/kUtI3lnpW1"><span class="fa fa-slack"></span></a></li>
</ul>
</nav>
<div class="hero-content text-center">
<div class="hero-small">
<hr /><span>{{ site.data.constants.dates.start}} - {{ site.data.constants.dates.end}}, {{ site.data.constants.dates.year}} & {{ site.data.constants.dates.start2}} - {{ site.data.constants.dates.end2}}, {{ site.data.constants.dates.year2}}</span><hr />
</div>
<div class="hero-big">RUBY<wbr><span class="hero-big-em">FOR</span><wbr>GOOD</div>
<div class="hero-normal">
Dedicated to making the world <strong>gooder</strong>
</div>
</div>
<div class="hero-bottom center">
<a href="https://ti.to/codeforgood/rubyforgood" class="btn btn-huge btn-3d"><i class="fa fa-heart fa-1x"></i> Click Here to Register for our Online Event </a>
<!--<a href="https://www.customink.com/fundraising/rfg-2018" class="btn btn-huge btn-3d">Buy a Supporter Shirt</a>-->
</div>
</div>
</section>
<!-- End Hero Section -->
<!-- Header -->
{% include header.html %}
<!-- End Header -->
<!-- About Section -->
<section id="about" class="section dark">
<div class="container">
<div class="icon-wrap"><span class="icon icon-active icon-party-09"></span></div>
<h3>Taking <a href="http://en.wikipedia.org/wiki/MINASWAN">MINASWAN</a> to heart</h3>
<div class="sub-title">Don't stop at being nice. Let's proactively do something good for our world, our community, and ourselves.</div>
<br />
<br />
<section class="nav-tabs-simple">
<!-- Nav tabs -->
<ul class="nav nav-tabs nav-justified">
<li class="active"><a href="#aboutUs" data-toggle="tab"><i class="icon icon-documents-bookmarks-12"></i> About</a></li>
<li><a href="#aboutDetails" data-toggle="tab"><i class="icon icon-chat-messages-01"></i> Projects</a></li>
<li><a href="#jquery" data-toggle="tab"><i class="icon icon-education-science-11"></i> Team Leads</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div class="tab-pane fade in active" id="aboutUs">
<article class="row">
<div class="col-md-5 col-sm-5 animated hiding" data-animation="fadeInLeft" data-delay="500">
<img class="img-responsive" src="/assets/img/2016photo.jpg" alt="ruby-for-good-2014" />
</div>
<div class="col-md-6 col-sm-6 text-left animated hiding" data-animation="fadeInRight" data-delay="500">
<h6>About Ruby for Good</h6>
<p>
Ruby for Good is an annual event based out of the DC-metro area
where Ruby programmers from all over the globe get together to build projects that support our communities. In 2020, the event will be moving online and be spread over two weekends.
Join us this year just for the fun of giving back! Questions? Drop us
a <a href="mailto:{{ site.data.constants.contact_email }}">note</a>.
</p>
</div>
</article></div>
<div class="tab-pane fade" id="aboutDetails">
<article class="row">
<div class="col-md-5 col-sm-5 animated hiding" data-animation="fadeInLeft" data-delay="500">
<img class="img-responsive" src="assets/img/about-placeholder-starbucks.jpg" alt="starbuck" />
</div>
<div class="col-md-6 col-sm-6 text-left animated hiding" data-animation="fadeInRight" data-delay="500">
<h6>Down to Business</h6>
<p>
We have some great projects lined up but we need more! We need YOU to help us find other great projects - suggest a project below! <!-- Project details, including available teams to join, will be announced to attendees around the beginning of May. Team leads will get information on projects at the start of June. -->
</p>
<a class="btn btn-sm btn-primary" href="{{site.data.constants.suggest_project}}" target="_blank">Suggest a Project</a>
</p>
</div>
</article>
</div>
<div class="tab-pane fade" id="jquery">
<article class="row">
<div class="col-md-6 col-sm-6 text-left animated hiding" data-animation="fadeInLeft" data-delay="500">
<h6>Team Leads</h6>
<p>
Have you always thought to yourself "Self, I rock—and I should
lead something!” Well here's your chance! We have lots of
great projects and we need great people to lead them! Leading a
team entails connecting with stakeholders, initial
architecting, planning out project milestones, and keeping your
team moving forward. Indicate your willingness when you
register and we’ll be in touch!
</p>
<p>
Learn more about what's expected of a team lead in the
<a href="team-leads">The Team Lead Guide</a>.
</p>
<p>
On a related note, we couldn’t successfully organize Ruby for
Good without amazing volunteer team leads. Once again a huge
thanks for all the hard work put in by last year’s leads!
</p>
</div>
<div class="col-md-5 col-sm-5 animated hiding" data-animation="fadeInRight" data-delay="500">
<img class="img-responsive" src="https://lh3.googleusercontent.com/-OFLetVVNdGs/U90zTgkiwDI/AAAAAAAAE9c/siJVI2YKwro/w929-h697-no/IMG_20140802_145029.jpg" alt="placeholder" />
</div>
</article>
</div>
</div>
</section>
</div>
</section>
<!-- End About Section -->
<!-- Newsletter Section -->
<section id="newsletter" class="section light">
<div class="overlay"></div>
<div class="container">
<article class="article-big animated hiding" data-animation="fadeInDown" data-delay="0">
<h5>Newsletter <span class="highlight">Signup</span></h5>
<p>Get the latest updates, early notice for <span class="highlight">event registrations</span>, and other Ruby for Good news!</p>
<form action="https://rubyforgood.us8.list-manage.com/subscribe/post?u=2eec95e401f96687d14f4af24&id=65f831bb77" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="form validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll" class="">
<div class="mc-field-group form-group form-inline">
<input type="email" value="" name="EMAIL" class="required email form-control" id="mce-EMAIL" placeholder="[email protected]" style="width:400px" >
<input type="submit" class="btn btn-xs btn-default" value="Subscribe" />
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_2eec95e401f96687d14f4af24_65f831bb77" tabindex="-1" value=""></div>
</div>
</form>
</div>
<script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script><script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';}(jQuery));var $mcj = jQuery.noConflict(true);</script>
</article>
</div>
</section>
<!-- End Newsletter Section -->
<!-- Stat Section -->
<!--
<section id="stat" class="section light">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="0">
<div class="stat"><span class="value" data-from="0" data-to="82">82</span></div>
<div class="stat-info">attendees</div>
<hr />
<p class="small">of your closest friends</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="500">
<div class="stat"><span class="value" data-from="0" data-to="71">71</span></div>
<div class="stat-info">hours</div>
<hr />
<p class="small">short hours to build something meaningful</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="1000">
<div class="stat"><span class="value" data-from="0" data-to="9">9</span>+</div>
<div class="stat-info">teams</div>
<hr />
<p class="small">project teams making something amazing</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="1500">
<div class="stat"><span class="value" data-from="0" data-to="12">12</span></div>
<div class="stat-info">red pandas</div>
<hr />
<p class="small">that need extra love and snuggles</p>
</div>
</div>
</div>
</div>
</section>
-->
<!-- End Stat Section -->
<!-- Details Section -->
<section id="elements" class="section dark">
<div class="container">
<section class="vc-example">
<article class="article-big">
<h5>What you <span class="highlight">need</span> to know</h5>
<p class="big">
<!-- Bring yourself, your laptop, and whatever you plan on wearing. Lodging consists of non-shared dorm rooms complete with linens, pillows, blankets and towels. We'll also be supplying food, drinks, and fun atmosphere. -->
For a more in-depth run down of the weekend, check out our <a href="/attend.html">attendee information</a> page. More questions? Drop us a <a href="mailto:{{ site.data.constants.contact_email }}">note</a>.
</p>
</article>
</section>
<section class="vc-example">
<div class="col-md-6 col-sm-6 col-xs-12">
<article>
<div class="h7">
What does it cost?
</div>
<p>
{{ site.data.constants.cost }} all-inclusive. <!--Registration includes room, linens, pillows,
towels, swag, and three all-you-can-eat meals a day.--> All funds go toward event costs!
</p>
</article>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<article>
<div class="h7">
Anything else?
</div>
<p>
You’ll spend the first day meeting with your team, chatting about your projects, and getting your environments aligned. We’ve found the event is most successful, with the most buy-in, when teams are a cohesive bunch from the beginning.
</p>
</article>
</div>
</section>
</div>
</section>
<!-- Speakers Section -->
<section id="speakers" class="section light">
<div class="overlay"></div>
<div class="container">
<div class="icon-wrap"><span class="icon icon-active icon-badges-votes-13"></span></div>
<h3>Our Organizers</h3>
<div class="sub-title">The folks you can blame for Ruby for Good</div>
<br />
<br />
<section class="row">
{% for person in site.data.organizers %}
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="speaker-item animated hiding" data-animation="fadeInUp" data-delay="0">
<div class="img-wrapper">
<img src="{{ person.img }}" class="img-speaker img-responsive img-circle" />
</div>
<div class="name">{{ person.name }}</div>
<div class="sub">{{ person.title }}</div>
<p class="small">{{ person.about }}</p>
<div class="social-link">
<a href="https://twitter.com/{{ person.twitter }}"><span class="fa fa-twitter"></span></a>
<a href="https://github.com/{{ person.github }}"><span class="fa fa-github"></span></a>
</div>
</div>
</div>
{% endfor %}
</section>
<!--
<div class="btn-wrapper">
<a href="#" class="btn btn-sm btn-default">See all speakers</a>
</div>
-->
</div>
</section>
<!-- End Speakers Section -->
<!-- Schedule Section -->
<!--
<section id="schedule" class="section dark">
<div class="container">
<div class="icon-wrap"><span class="icon icon-active icon-text-hierarchy-07"></span></div>
<h3>Full schedule</h3>
<div class="sub-title">Shortest way to explore what will happen at Ruby for Good</div>
<br />
<br />
<section class="nav-tabs-default hidden-xs">
<ul class="nav nav-tabs">
<li><a href="#PreConf" data-toggle="tab">
<div class="title">PreConf</div>
<div class="subtitle">7/30/2014</div>
</a></li>
<li class="active"><a href="#DayOne" data-toggle="tab">
<div class="title">Day 1</div>
<div class="subtitle">7/31/2014</div>
</a></li>
<li><a href="#DayTwo" data-toggle="tab">
<div class="title">Day 2</div>
<div class="subtitle">8/01/2014</div>
</a></li>
<li><a href="#DayThree" data-toggle="tab">
<div class="title">Day 3</div>
<div class="subtitle">8/02/2014</div>
</a></li>
<li><a href="#After" data-toggle="tab">
<div class="title">AfterConf</div>
<div class="subtitle">8/03/2014</div>
</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane fade" id="PreConf">
<article>
<div class="panel-title">
<p class="big">
Nothing has been scheduled yet but depending on how many people are coming early we will definitely do something fun. Some thoughts that are currently floating around are a <a href="http://www.trolleytours.com/washington-dc/night-tours.asp">night time tour of the monuments</a>, a visit to <a href="http://airandspace.si.edu/visit/udvar-hazy-center/"> udvar hazy </a> or maybe something else. If there is something you'd like to see or do in the Nations Capital we are definitely open to suggestions! Send us an <a href="mailto:{{ site.data.constants.contact_email }}">email</a>.</p>
</div>
</article>
</div>
<div class="tab-pane fade in active" id="DayOne">
<ul class="nav nav-tabs">
<li class="active"><a href="#DayOne-1" data-toggle="tab">Planetary Hall</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane fade in active" id="DayOne-1">
<div class="panel-group timeline-schedule" id="panelTimelineOne">
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 8:00 AM</div>
<h4>
Check In
</h4>
</div>
</div>
<div class="panel-body">
<p>Check in and start meeting your fellow Gooders</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 9:00 AM</div>
<h4>
Breakfast
</h4>
</div>
</div>
<div class="panel-body">
<p>
Prepared by teams 1 and 2
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 10:00 AM</div>
<h4>
Hacking
</h4>
</div>
</div>
<div class="panel-body">
<p>
Getting started
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 1:00 PM</div>
<h4>
Lunch
</h4>
</div>
</div>
<div class="panel-body">
<p>
Prepared by teams 3 and 4
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 3:00 PM</div>
<h4>
Hacking
</h4>
</div>
</div>
<div class="panel-body">
<p>
Stay on target
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 7:00 PM</div>
<h4>
Dinner
</h4>
</div>
</div>
<div class="panel-body">
<p>
Prepared by teams 5 and 6
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 9:00 PM</div>
<h4>
Fun
</h4>
</div>
</div>
<div class="panel-body">
<p>
Boardgames, Socializing, Whatever
</p>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div class="tab-pane fade" id="DayTwo">
<ul class="nav nav-tabs">
<li class="active"><a href="#DayTwo-1" data-toggle="tab">Planetary Hall</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane fade in active" id="DayTwo-1">
<div class="panel-group timeline-schedule" id="panelTimelineOne">
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 9:00 AM</div>
<h4>
Breakfast
</h4>
</div>
</div>
<div class="panel-body">
<p>
Prepared by teams 7 and 8
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 10:00 AM</div>
<h4>
Workshop?
</h4>
</div>
</div>
<div class="panel-body">
<p>
Check back here for a link to download materials and github repo.
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 12:30 PM</div>
<h4>
Lunch
</h4>
</div>
</div>
<div class="panel-body">
<p>
Prepared by teams 9 and 10
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 2:00 PM</div>
<h4>
Workshop?
</h4>
</div>
</div>
<div class="panel-body">
<p>
Check back here for a link to download materials and github repo.
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 4:00 PM</div>
<h4>
Workshop?
</h4>
</div>
</div>
<div class="panel-body">
<p>
Check back here for a link to download materials and github repo.
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 6:00 PM</div>
<h4>
Dinner
</h4>
</div>
</div>
<div class="panel-body">
<p>
Prepared by teams 11 and 12
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 7:30 PM</div>
<h4>
Fun
</h4>
</div>
</div>
<div class="panel-body">
<p>
Boardgames, Socializing, Whatever
</p>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="tab-pane fade" id="DayThree">
<ul class="nav nav-tabs">
<li class="active"><a href="#DayThree-1" data-toggle="tab">Planetary Hall</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane fade in active" id="DayThree-1">
<div class="panel-group timeline-schedule" id="panelTimelineOne">
<div class="tab-content">
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 9:00 AM</div>
<h4>
Breakfast
</h4>
</div>
</div>
<div class="panel-body">
<p>
Prepared by teams 13 and 14
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 10:00 AM</div>
<h4>
Hacking
</h4>
</div>
</div>
<div class="panel-body">
<p>
Putting the finishing touches on our apps.
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 12:30 PM</div>
<h4>
Lunch
</h4>
</div>
</div>
<div class="panel-body">
<p>
Prepared by teams 15 and 16
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 2:00 PM</div>
<h4>
Presentations
</h4>
</div>
</div>
<div class="panel-body">
<p>
Let's show off what we've built and get feedback from each other. If we've made significant progress
we'll try and remote in the organizations that we're doing the work for
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 6:00 PM</div>
<h4>
Dinner
</h4>
</div>
</div>
<div class="panel-body">
<p>
Prepared by teams 17 and 18
</p>
</div>
</div>
<div class="panel panel-default">
<div class="speaker-wrapper">
<img src="assets/img/speaker/speaker-1.jpg" class="img-responsive img-circle" alt="speaker-1" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i> 7:30 PM</div>
<h4>
Fun and Goodbyes
</h4>
</div>
</div>
<div class="panel-body">
<p>
Like all great things, Ruby for Good will come to an end. We'll say goodbye to our new friends
and leave happy and better for the amazing experience we will all have just shared.
</p>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<div class="tab-pane fade" id="After">
<article>
<div class="panel-title">
<p class="big">We're going to enjoy the company of good friends who we won't see again for a while as our numbers slowly dwindle to outbound flights.</p>
<p class="big">Feel free to hang out for a while.</p>
</div>
</article>
</div>
</div>
</div>
</section>
</div>
</section>
-->
<!-- End Schedule Section -->
<!-- Price Section -->
<!--
<section id="price" class="section dark">
<div class="container">
<div class="icon-wrap"><span class="icon icon-active icon-shopping-02"></span></div>
<h3>Pricetable</h3>
<div class="sub-title">Shortest way to explore what will happen on Ruby for Good</div>
<br/>
<br/>
<div class="pricing-cols pricing-3-cols">
<div class="pricing-col animated hiding" data-animation="fadeInLeft" data-delay="0">
<div class="pricing-col-header">
<h3 class="pricing-col-header-title">1 day</h3>
<h4 class="pricing-col-header-amount">
<span class="pricing-col-amount">$100</span></h4>
</div>
<div class="pricing-col-content">
<ul>
<li>Lorem ipsum is simply</li>
<li>Dummy text of the printing</li>
<li>Typesetting industry</li>
</ul>
<a class="pricing-col-button" href="register.html">Buy Now</a>
</div>
</div>
<div class="pricing-col pricing-col-featured">
<div class="pricing-ribbon">-20%</div>
<div class="pricing-col-header">
<h3 class="pricing-col-header-title">3 days</h3>
<h4 class="pricing-col-header-amount"><span class="pricing-col-amount">$150</span></h4>
</div>
<div class="pricing-col-content">
<ul>
<li>Lorem ipsum is simply</li>
<li>Dummy text of the printing</li>
<li>Typesetting industry</li>
</ul>
<a class="pricing-col-button" href="register.html">Buy Now</a>
</div>
</div>
<div class="pricing-col animated hiding" data-animation="fadeInRight" data-delay="0">
<div class="pricing-col-header">
<h3 class="pricing-col-header-title">2 days</h3>
<h4 class="pricing-col-header-amount"><span class="pricing-col-amount">$200</span></h4>
</div>
<div class="pricing-col-content">
<ul>
<li>Lorem ipsum is simply</li>
<li>Dummy text of the printing</li>
<li>Typesetting industry</li>
</ul>
<a class="pricing-col-button" href="register.html">Buy Now</a>
</div>
</div>
</div>
</div>
</section>
-->
<!-- End Price Section -->
<!-- Map Section -->
<section id="map" class="dark">
<div id="canvas-map"></div>
<div class="container">
<div class="row">
<div class="col-md-5 col-sm-7 animated hiding location" data-animation="fadeInLeft" data-delay="0">
<h3><a href="location">Location</a></h3>
<ul itemscope="" itemtype="http://schema.org/PostalAddress">
<li itemprop="address"><i class="fa fa-map-marker highlight"></i>{{ site.data.constants.address }}</li>
<li itemprop="email"><i class="fa fa-envelope highlight"></i>{{ site.data.constants.contact_email }}</li>
<!--
<li><i class="fa fa-clock-o highlight"></i><a href="/2017.html">2017 Event Information</a></li>
-->
</ul>
</div>
</div>
</div>
</section>
<!-- Elements Section -->
<!--
<section id="elements" class="section dark">
<div class="container">
<section class="vc-example text-center">
<h1>H1 <span class="highlight">Highlighted</span> text</h1>
<h2>H2 <span class="highlight">Highlighted</span> text</h2>
<h3>H3 <span class="highlight">Highlighted</span> text</h3>
<h4>H4 <span class="highlight">Highlighted</span> text</h4>
<h5>H5 <span class="highlight">Highlighted</span> text</h5>
<h6>H6 <span class="highlight">Highlighted</span> text</h6>
<div class="h7">H7 <span class="highlight">Highlighted</span> text</div>
<div class="h8">H8 <span class="highlight">Highlighted</span> text</div>
</section>
<section class="vc-example">
<article class="article-big">
<h5>Big <span class="highlight">Paragraph</span></h5>
<p class="big">Lorem Ipsum is simply dummy text of the <strong>printing and typesetting</strong> industry. Lorem Ipsum has been the industry's standard dummy text <a href="#">ever since</a> the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</article>
</section>
<section class="vc-example">
<article>
<div class="h7"><span class="highlight">Regular</span> Paragraph</div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
</article>
</section>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<section class="vc-example icon-example">
<div class="h7"><span class="highlight">600+</span> Lines Icons included</div>
<ul class="list-inline">
<li><i class="icon icon-office-04 icon-active"></i></li>
<li><i class="icon icon-office-11 icon-active"></i></li>
<li><i class="icon icon-office-10 icon-active"></i></li>
<li><i class="icon icon-office-09 icon-active"></i></li>
<li><i class="icon icon-office-08 icon-active"></i></li>
<li><i class="icon icon-office-07 icon-active"></i></li>
<li><i class="icon icon-office-06 icon-active"></i></li>
<li><i class="icon icon-office-05 icon-active"></i></li>
<li><i class="icon icon-office-04 icon-active"></i></li>
<li><i class="icon icon-office-11 icon-active"></i></li>
</ul>
</section>
</div>
</div>
<section class="vc-example">
<div class="h7"><span class="highlight">Gallery</span></div>
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-6">
<a href="assets/img/gallery/thumb-1.jpg" class="thumb-wrapper fancybox" data-fancybox-group="gallery">
<div class="overlay">Image Title</div>
<img src="assets/img/gallery/thumb-1.jpg" class="img-responsive" alt="thumb-1" />
</a>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<a href="assets/img/gallery/thumb-2.jpg" class="thumb-wrapper fancybox" data-fancybox-group="gallery">
<div class="overlay">Image Title</div>
<img src="assets/img/gallery/thumb-2.jpg" class="img-responsive" alt="thumb-2" />
</a>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<a href="assets/img/gallery/thumb-3.jpg" class="thumb-wrapper fancybox" data-fancybox-group="gallery">
<div class="overlay">Image Title</div>
<img src="assets/img/gallery/thumb-3.jpg" class="img-responsive" alt="thumb-3" />
</a>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<a href="assets/img/gallery/thumb-4.jpg" class="thumb-wrapper fancybox" data-fancybox-group="gallery">
<div class="overlay">Image Title</div>
<img src="assets/img/gallery/thumb-4.jpg" class="img-responsive" alt="thumb-4" />
</a>
</div>
</div>
</section>
<div class="row">
<div class="col-md-6 col-md-offset-3 center">
<div class="row">
<div class="col-md-6 center">
<a href="#" class="btn btn-sm btn-primary">More elements</a>
</div>
<div class="col-md-6 center">
<a href="elements.html" class="btn btn-sm btn-secondary">Get template</a>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!-- End Elements Section -->
<!-- Scholarship Section -->
<section id="register" class="section light">
<div class="overlay"></div>
<div class="container">
<div class="row">
<br/>
<br/>
<article class="article-big animated hiding" data-animation="fadeInUp" data-delay="0">
<h5> Want to participate but need some help? </h5>
<p>
The scholarship application window has closed. If you applied for a scholarship but haven't heard anything please <a href="mailto:{{ site.data.constants.contact_email }}?subject=Scholarship" ><font color="black">let us know!</font></a>
<!-- Ruby For Good is providing scholarship tickets to allow more people the opportunity to participate. Click the link below to submit your request!
<br/>
<br/>
<a href="https://docs.google.com/forms/d/1M3PJepMOZcqUcIN81Ju7YEeXpQKhYWnSWnmgeZTX33w/viewform#start=openform" class="btn btn-sm btn-tertiary">Apply for a Scholarship</a>
-->
</p>
</article>
</div>
</div>
</section>
<!-- End Register Section -->
<!-- Sponsors Section -->
<section id="sponsors" class="section dark">
<div class="container">
<div class="icon-wrap"><span class="icon icon-active icon-documents-bookmarks-12"></span></div>
<h3>Sponsors</h3>
<div class="sub-title">The folks that make the good possible</div>
<br/>
<hr>
<div class="row">
<!-- <ul class="list-ruby list-inline">
<li><a href="https://www.mapbox.com/"><img src="assets/img/sponsor/mapbox-logo-color.svg" alt="sponsor-1"></a></li>
</ul>
<hr> -->
<ul class="list-platinum list-inline">
<!-- <li><a href="http://www.optoro.com/careers/open-positions/"><img src="assets/img/sponsor/optoro-logo.png" alt="sponsor-8"></a></li>
<li><a href="http://www.knightpoint.com/"><img src="assets/img/sponsor/kps.png" alt="sponsor-2"></a></li> -->
<!-- <li><a href="http://heroku.com"><img src="assets/img/sponsor/heroku.png" alt="sponsor-4"></a></li>
<li><a href="https://godaddy.com"><img src="assets/img/sponsor/godaddy.png" alt="sponsor-5"></a></li> -->