-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1397 lines (1333 loc) · 89.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
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html dir="ltr" lang="en-US" class="ie6"> <![endif]-->
<!--[if IE 7 ]> <html dir="ltr" lang="en-US" class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html dir="ltr" lang="en-US" class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html dir="ltr" lang="en-US" class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html dir="ltr" lang="en-US" class="no-js"> <!--<![endif]-->
<head>
<title>Grand Rapids Forward: Downtown &amp; River Action Plan </title>
<meta charset="utf-8">
<script src="static/scripts/components-base.min.js"></script>
<meta name="description" content="">
<meta name="author" content="OpenPlans">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@planinabox">
<meta name="twitter:title" content="Grand Rapids Forward: Downtown &amp; River Action Plan ">
<meta name="twitter:description" content="">
<!-- Facebook -->
<meta property="og:site_name" content="OpenPlans"/>
<meta property="og:title" content="Grand Rapids Forward: Downtown &amp; River Action Plan " />
<meta property="og:description" content="" />
<!-- Mobile Viewport Fix -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="icon" href="favicon.ico">
<link rel="shortcut icon" href="favicon.ico">
<!-- Google Web Fonts -->
<link href='http://fonts.googleapis.com/css?family=Bitter:400,700,400italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="static/styles/components.min.css" />
<link rel="stylesheet" href="static/styles/style.min.css" type="text/css" />
<link rel="stylesheet" href="static/styles/custom.css">
<script src="static/scripts/modernizr.min.js"></script>
</head>
<body>
<!--[if lt IE 9]>
<div class="alert-box alert text-center" style="margin:0;"><h1>Your browser is not supported.</h1> <h3>Please <a href="http://browsehappy.com/">upgrade your browser</a> to start using OpenPlans.</h3></div>
<![endif]-->
<!--[if IE 9 ]>
<div class="alert-box text-center" style="margin:0;"><strong>You're using an outdated browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</strong></div>
<![endif]-->
<div id="page">
<div class="generic-page">
<header data-magellan-destination="home" id="home" class="site-header has-image" style="background-image: url(images/instagram-grid.jpg)">
<div class="site-header-content">
<!-- page header section -->
<div class="row project-header container">
<ul class="social-media-list right">
<li><a class="" href="http://facebook.com/grfwd" target="_blank"><img src="images/social-facebook.gif"></a></li>
<li><a class="" href="http://instagram.com/grfwd" target="_blank"><img src="images/social-instagram.gif"></a></li>
<li><a class="" href="http://twitter.com/grfwd" target="_blank"><img src="images/social-twitter.gif"></a></li>
</ul>
<div class="social-links-header right">
</div>
<div class="small-12 columns text-center extra-padding-top some-padding-bottom">
<h1 class="project-title"><img src="https://planbox-media.s3.amazonaws.com/GrandRapids/new/GRF_logos_5_29-02.jpg" alt="Grand Rapids Forward: Downtown &amp; River Action Plan "></h1>
</div>
<div class="columns large-12">
<h1 class="project-tagline">Help shape the future of Downtown Grand Rapids and the Grand River corridor.</h1>
</div>
<div class="columns large-6">
<a href="#section-get-involved" class="button large expand radius">GET INVOLVED</a>
</div>
<div class="columns large-6">
<a href="#section-the-plan" class="button large expand radius">LEARN MORE</a>
</div>
</div>
<!-- end of page header -->
<div class="project-menu-container has-project-menu">
<div data-magellan-expedition="fixed" class="project-menu" style="">
<div class="row container">
<div class="small-12 columns">
<ul class="sub-nav">
<li data-magellan-arrival="home" class=""><a href="#home">Home</a></li>
<li data-magellan-arrival="section-news" class="active"><a href="#section-news">News</a></li>
<li data-magellan-arrival="section-the-plan"><a href="#section-the-plan">The Plan</a></li>
<li data-magellan-arrival="section-get-involved"><a href="#section-get-involved">Get Involved</a></li>
<li data-magellan-arrival="section-timeline"><a href="#section-timeline">Timeline</a></li>
</ul>
</div>
</div>
</div>
</div>
</div><!-- end .site-header-content -->
</header>
<div class="orderable-container" id="section-list">
<div>
<section id="section-text-3-wrapper" class="project-section-raw">
<span data-magellan-destination="section-text-3" id="section-text-3" class="section-anchor"></span>
<div class="row container">
<div class="small columns">
<h3 class="section-heading">We need your help</h3>
</div>
</div>
<div class="row container">
<div class="columns large-7">
<p class="text-large tiny-margin-bottom">Please join your neighbors at the meetings in your area. Your voice is important!</p><a href="#section-timeline" class="button large radius"><small style="display:block;font-weight:normal;">VIEW THE TIMELINE TO</small>Find A Meeting Near You</a>
</div>
<div class="columns large-5" style="margin:0;">
<!-- side box -->
</div>
</div>
</section>
<section id="section-news-wrapper" class="project-section-raw">
<span data-magellan-destination="section-news" id="section-news" class="section-anchor"></span>
<div class="row container">
<div class="columns">
<br>
<div class="row">
<div class="medium-8 columns">
<h3>When you think of Downtown Grand Rapids and the Grand River, do you find yourself thinking about what's there now, or do you imagine the potential of what could be?</h3>
<p>We're in the midst of making a dramatic transition from being a city of sprawl to re-focusing on two of the city's strongest assets: the Grand River and Downtown. Grand Rapids Forward is a comprehensive planning process that invites the public to join Downtown Grand Rapids Inc. [DGRI], the City of Grand Rapids, and their partners in envisioning the many ways in which we can leverage this momentum to make progress towards a holistic vision for Downtown and the Grand River.</p>
</div>
<div class="medium-4 columns">
<script src="http://instansive.com/widget/js/instansive.js"></script>
<iframe src="http://instansive.com/widgets/T8bf98ce06fc8954555a270b9611bc1e.html" scrolling="no" allowtransparency="true" class="instansive-widget" style="width: 100%; border: 0px; overflow: hidden; display: block; height: 606px;"></iframe>
<p style="font-size:0.75rem; background-color:#eee; margin:0; padding:0.5rem 0.25rem; text-align:center; line-height:1.25;"><strong>We're collecting your big ideas on <a href="http://instagram.com/grfwd">Instagram</a>.</strong></p>
</div>
</div>
</div>
</div>
</section>
<section id="section-text-2-wrapper" class="project-section-raw">
<span data-magellan-destination="section-text-2" id="section-text-2" class="section-anchor"></span>
<div class="row container">
<div class="small columns">
<h3 class="section-heading">In the News</h3>
</div>
</div>
<div class="row container">
<div class="columns">
<div class="row">
<div class="large-6 columns">
<p>From MLive, August 24, 2014<br><a target="_blank" href="http://www.mlive.com/news/grand-rapids/index.ssf/2014/08/striking_gold_with_silver_line.html"><strong>Striking gold with Silver Line? Grand Rapids bets $40 million on state's first bus rapid transit system</strong></a></p>
<p>From the EPA Newsroom, July 31, 2014<br><a target="_blank" href="http://yosemite.epa.gov/opa/admpress.nsf/0/53193463F72148B385257D2600631888"><strong>EPA Awards Grants to Promote Environmental Stewardship in Michigan</strong></a></p>
</div>
<div class="large-6 columns">
<p>From The Rapidian, August 5, 2014<br><a target="_blank" href="http://therapidian.org/11th-annual-mayors-river-cleanup"><strong>The 11th Annual Mayors' Grand River Cleanup Is Set For September 20th</strong></a></p>
<p>From August 26, 2014<br><a target="_blank" href="http://www.mlive.com/news/grand-rapids/index.ssf/2014/08/20-story_residential_tower_pla.html#incart_river"><strong>20-story residential tower planned at The B.O.B. in downtown Grand Rapids</strong></a></p>
</div>
<div class="hide toggle-section-target">
<div class="large-6 columns">
<p>From MLive, July 17, 2014<br><a target="_blank" href="http://www.mlive.com/business/west-michigan/index.ssf/2014/07/what_are_downtown_planners_are.html#incart_river"><strong>See what issues downtown planners are hearing about as they develop a new master plan</strong></a></p>
<p>From The Rapidian, July 16, 2014<br><a target="_blank" href="http://therapidian.org/why-gr-forward--prepare-smart-explosive-growth-takes-citizen-involvement"><strong>Why GR Forward: Preparing for smart, explosive growth takes citizen involvement</strong></a></p>
<p>From MLive, July 15, 2014<br><a target="_blank" href="http://www.mlive.com/business/west-michigan/index.ssf/2014/07/grand_rapids_homes_sales_and_n.html#incart_river"><strong>Grand Rapids home sales, new listings perked up in June</strong></a></p>
<p>From The Rapidian, July 15, 2014<br><a target="_blank" href="http://therapidian.org/placematters-maker-space-fosters-diversity-continues-encourage-cross-pollination"><strong>Maker space fosters diversity, continues to encourage cross pollination</strong></a></p>
<p>From Grand Rapids Business Journal, June 13, 2014<br><a target="_blank" href="http://www.grbj.com/articles/79894-problem-solving-for-urban-living-demand-best-left-to-local-expertise"><strong>Problem solving for urban living demand best left to local expertise</strong></a></p>
<p>From the Rapidian, June 10, 2014<br><a target="_blank" href="http://therapidian.org/placematters-changing-constitution-livability"><strong>The changing constitution of livability</strong> How will Grand Rapids develop as residents' priorities change?</a></p>
</div>
<div class="large-6 columns">
<p>From MLive, July 14, 2014<br><a target="_blank" href="http://www.mlive.com/business/west-michigan/index.ssf/2014/07/downtown_office_market_was_a_h.html#incart_river_business"><strong>Downtown office market was a hotbed as big buildings exchanged hands in first half of 2014</strong></a></p>
<p>From The Rapidian, July 1, 2014<br><a target="_blank" href="http://therapidian.org/placematters-gr-forward-comprehensive-planning-process-has-started-and-looking-community-feedback"><strong>Envisioning the future of Grand Rapids: how best to utilize downtown, riverfront</strong></a></p>
<p>From MLive, July 1, 2014<br><a target="_blank" href="http://www.mlive.com/business/west-michigan/index.ssf/2014/07/founders_will_double_in_size_b.html"><strong>Founders Brewing expansion will double size of Grand Rapids company, CEO says</strong></a></p>
<p>From Grand Rapids Business Journal, June 13, 2014<br><a target="_blank" href="http://www.grbj.com/articles/79883-is-downtown-ready-for-a-building-boom"><strong>Is downtown ready for a building boom?</strong> Experts say expanding population will demand more housing options in 2014 and soon.</a></p>
<p>From MLive, May 29, 2014<br><a target="_blank" href="http://www.mlive.com/business/west-michigan/index.ssf/2014/05/grand_rapids_downtown_real_est.html"><strong>Grand Rapids' downtown housing market has reached 'a point of critical mass,' report concludes</strong></a></p>
<p>From MLive, May 23, 2014<br><a target="_blank" href="http://www.mlive.com/news/grand-rapids/index.ssf/2014/05/wrecking_downtown_100_photos_o.html"><strong>Wrecking downtown: 100 photos of Grand Rapids urban renewal demolitions</strong></a></p>
</div>
</div>
<div class="columns">
<a href="#" class="button tiny radius secondary expand toggle-section-link">Older News</a>
</div>
</div>
</div>
</div>
</section>
<section id="section-the-plan-wrapper" class="project-section-raw">
<span data-magellan-destination="section-the-plan" id="section-the-plan" class="section-anchor"></span>
<div class="row container">
<div class="small columns">
<h3 class="section-heading">The Study Area</h3>
</div>
</div>
<div class="row container">
<div class="columns">
<iframe width="100%" height="475" frameborder="0" src="https://a.tiles.mapbox.com/v4/openplans.in9pjka1/attribution,zoompan,geocoder,legend,share.html?access_token=pk.eyJ1Ijoib3BlbnBsYW5zIiwiYSI6ImZRQzRPYnMifQ.f75KI3Q9rFXRY2Zciz6DKw#12/42.9793/-85.6733"></iframe>
</div>
</div>
</section>
<section id="section-text-wrapper" class="project-section-raw">
<span data-magellan-destination="section-text" id="section-text" class="section-anchor"></span>
<div class="row container">
<div class="small columns">
<h3 class="section-heading">Downtown</h3>
</div>
</div>
<div class="row container">
<div class="columns">
<img src="images/dt_next-01.jpg"><br><br>
<div class="columns-2">
We have all watched change happen all over Downtown and some of us have been a part of this change. Just think how different things were ten years ago. Downtown is starting to hit its stride as a destination, as an economic center, and, increasingly, as home to many residents now living downtown.<br><br>What will the next decade and beyond bring for Downtown? The Downtown Plan component of Grand Rapids Forward will create a vision for the future of Downtown that will seek to maximize opportunities for improvements. Getting to that vision and framework for change will require a comprehensive analysis of economic development, the Grand River, housing, transportation and parking, land use, open space, infrastructure, among other important issues.<br><br>You are a critical part of this. Forming a thorough understanding of these issues requires a careful understanding of how they affect all of us: the residents, business and property owners, employees, leaders, advocates, and visitors to Downtown. <a href="#section-get-involved">Learn about ways to participate here</a>.
</div>
<br>
</div>
</div>
</section>
<section id="section-text-4-wrapper" class="project-section-raw">
<span data-magellan-destination="section-text-4" id="section-text-4" class="section-anchor"></span>
<div class="row container">
<div class="small columns">
<h3 class="section-heading">River</h3>
</div>
</div>
<div class="row container">
<div class="columns">
<img src="images/reconnect-01.jpg"><br><br>
<div class="columns-2">
The River Corridor Plan will reimagine lands along the riverfront and rethink how we interact with the Grand River itself. We will explore how to enhance the city’s vitality, improve quality of life and leverage economic activity. The planning process will study the river corridor from Lamoreaux to Millennium Parks. Through a robust community engagement process, the public will provide critical input to guide the River Corridor Plan’s development. Anticipated topics include an analysis of complimentary and catalytic land uses, parks and trails, environmental quality and neighborhood connections. Grand Rapids’ namesake rapids were removed from the landscape more than a century ago. The river shaped our past, now how will we design the future?
</div>
<br>
</div>
</div>
</section>
<section id="section-text-5-wrapper" class="project-section-raw">
<span data-magellan-destination="section-text-5" id="section-text-5" class="section-anchor"></span>
<div class="row container">
<div class="small columns">
<h3 class="section-heading">Central Campus and Museum School</h3>
</div>
</div>
<div class="row container">
<div class="columns">
<div class="columns-2">
<p>Imagine the potential of a cutting edge new secondary public school choice where the sights, sounds, exhibits and artifacts of our public museum are literally a part of everyday teaching and learning. In fall 2015, the new Grand Rapids Public Museum School will open its doors to students in grades 6-12 thanks to a remarkable partnership between the Grand Rapids Public Museum, Grand Rapids Public Schools, Kendall College of Art and Design/Ferris State University, Grand Valley State University, the City of Grand Rapids, Downtown Grand Rapids Inc., and the Downtown Development Authority. As a part of the GR Forward planning process, residents from throughout the region will be a part of envisioning what this new school should look like in the Van Andel Museum Center and 54 Jefferson.</p>
</div>
<div class="grfwd-image-gallery">
<a class="grfwd-thumb-link active" data-url="images/class_009_copy_2.jpg" href="#"><img src="images/class_009_copy_2-thumb.jpg"></a>
<a class="grfwd-thumb-link" data-url="images/GrandRapidsMontessori.jpg" href="#"><img src="images/GrandRapidsMontessori-thumb.jpg"></a>
<a class="grfwd-thumb-link" data-url="images/2621572321_7975c64c21.jpg" href="#"><img src="images/2621572321_7975c64c21-thumb.jpg"></a>
<br>
<img class="grfwd-image" src="images/class_009_copy_2.jpg">
</div>
<div class="columns-2">
<p>Did you know that the old Central High campus located in the historic Heritage Hill neighborhood is home to the oldest still functioning high school facility in the entire state and the nation’s first PK-12 public Montessori school? Thanks to the vision of Superintendent Teresa Weatherall Neal and the overwhelming support of this community, the Innovation Central High campus is at the epicenter of the transformation and future of our city's public schools. Grand Rapids Public Schools invites students, parents, staff and neighbors to take part in the GR Forward process to participate in an exciting design/visioning and redevelopment plan that among other things will explore the development of an urban farm or urban agriculture experience for all four Centers of Innovation and Grand Rapids Montessori. We want to know what you think about the historic preservation and renovation of the Central and Fountain buildings, demolition of the old City/EdPark building, potential traffic improvements, landscaping and beautification ideas, improving school and neighborhood/community use of green space, and more!</p>
</div>
</div>
</div>
</section>
<section id="section-process-wrapper" class="project-section-raw">
<span data-magellan-destination="section-process" id="section-process" class="section-anchor"></span>
<div class="row container">
<div class="columns">
<img src="images/timeline.gif">
</div>
</div>
</section>
<section id="section-get-involved-wrapper" class="project-section-raw">
<span data-magellan-destination="section-get-involved" id="section-get-involved" class="section-anchor"></span>
<div class="row container">
<div class="small columns">
<h3 class="section-heading">Get Involved</h3>
</div>
</div>
<div class="row container">
<div class="columns">
<div class="row">
<div class="large-7 columns">
<p class="text-large tiny-margin-bottom">Please join your neighbors at the meetings in your area. Your voice is important!</p>
<a href="#section-timeline-2" class="button large radius"><small style="display:block;font-weight:normal;">VIEW THE TIMELINE TO</small> Find A Meeting Near You</a>
<p><a href="http://map.grforward.org/"><img src="images/map-launch-img.jpg"></a></p>
</div>
<div class="large-5 columns">
<p><strong>Why get involved?</strong> To accommodate new investment, fully capitalize on the local arts and culture, promote the local economy and reduce the city's environmental footprint all while operating within fiscal constraints requires proactive thinking tempered by hyperlocal expertise. In short, Grand Rapids needs progressive action and a progressive vision driven by those most familiar with the issues and opportunities. That said, Grand Rapids Forward will be developed through a robust community engagement process that will provide the foundation for the vision and recommendations guiding change in Downtown Grand Rapids and along the Grand River.</p>
</div>
</div>
</div>
</div>
</section>
<section id="section-open-house-slides-wrapper" class="project-section-raw">
<span data-magellan-destination="section-open-house-slides" id="section-open-house-slides" class="section-anchor"></span>
<div class="row container">
<div class="columns">
<div class="row">
<div class="large-7 columns">
<h3>View slides from the Open House</h3>
</div>
</div>
</div>
</div>
</section>
<section id="section-raw-wrapper" class="project-section-raw">
<span data-magellan-destination="section-raw" id="section-raw" class="section-anchor"></span>
<div class="row container">
<div class="small columns">
<div class="row container extra-padding-bottom">
<div class="large-10 large-centered columns">
<style>.embed-container { position: relative; padding-bottom: 76%; padding-top: 30px; height: 0; overflow: hidden; max-width: 100%; height: auto; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>
<div class="embed-container">
<iframe src="http://www.slideshare.net/slideshow/embed_code/41812922" frameborder="0" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen="" oallowfullscreen="" msallowfullscreen=""></iframe>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="section-timeline-wrapper" class="project-section-text">
<span data-magellan-destination="section-timeline" id="section-timeline" class="section-anchor"></span>
<div class="row container">
<div class="small-12 columns">
<h3 class="section-heading">Project meetings</h3>
<div class="project-text-content">
<p>Browse our meeting agendas and stay up to date on the conversation</p>
</div>
</div>
</div>
</section>
<!-- this is the events section -->
<section id="section-timeline-eleme-wrapper" class="project-section-timeline">
<span data-magellan-destination="section-timeline-eleme" id="section-timeline-eleme" class="section-anchor"></span>
<div class="row container">
<div class="small-12 columns">
<p class="event-tags some-margin-bottom">
<a href="#" class="button small tertiary radius less-padding no-margin-bottom tag-btn">Belknap</a>
<a href="#" class="button small tertiary radius less-padding no-margin-bottom tag-btn">Black Hills</a>
<a href="#" class="button small tertiary radius less-padding no-margin-bottom tag-btn">Creston</a>
<a href="#" class="button small tertiary radius less-padding no-margin-bottom tag-btn">Heritage Hill</a>
<a href="#" class="button small tertiary radius less-padding no-margin-bottom tag-btn">Roosevelt Park</a>
<a href="#" class="button small tertiary radius less-padding no-margin-bottom tag-btn">SWAN/JBAN</a>
<a href="#" class="button small tertiary radius less-padding no-margin-bottom tag-btn">West Grand</a>
</p>
<a href="#" class="show-more-past-events button small round less-padding"> Show Older Events </a>
<ol class="event-list no-bullet some-margin-top">
<li class="event">
<span id="event-downtown-steering-committee" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Downtown Steering Committee</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-04-03T16:00:00Z">April 3, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">
<ul>
<li><a href="https://dl.dropbox.com/s/8wiaqa53hg1qubl/Downtown%20Plan%20Steering%20Committee%20Description.pdf?dl=0">Downtown Plan Steering Committee Description</a>, including: Overview, Committee Responsibilities, Schedule, Committee Roster<br></li>
<li><a href="https://dl.dropbox.com/s/18lxdmey0pspvh5/140403_DowntownSteeringCommittee_April3.pdf?dl=0">Presentation</a><br></li>
</ul>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<!-- this is a new event -->
<li class="event">
<span id="event-river-restoration-steering-committee" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">River Restoration Steering Committee</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-04-17T16:00:00Z">April 17, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">
2:00pm – 3:30pm <br>Grand Valley Metro Council
Main Conference Room
678 <br>Front Avenue NW, Suite 200
<br>
<ul>
<li><a href="https://dl.dropbox.com/s/fgq94ku2xxq075m/River%20Restoration%20Steering%20Committee%20Agenda%204-17.pdf?dl=0">Meeting agenda</a><br></li>
<li><a href="https://dl.dropbox.com/s/rbpfwpe5lry9kdh/April%2017%20Steering%20Committee%20Meeting.pptx.pdf?dl=0">Presentation</a></li>
</ul>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-downtown-steering-committee-2" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Downtown Steering Committee</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-05-08T16:00:00Z">May 8, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">
<ul>
<li><a href="https://dl.dropbox.com/s/4h7g7j7s55ohkj2/140508_DowntownSteeringCommittee_May_8.pdf?dl=0">Presentation</a><br></li>
</ul>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-river-corridor-plan-steering-committee-presentat" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">River Corridor Plan Steering Committee</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-06-05T16:00:00Z">June 5, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">
<ul>
<li><a href="https://dl.dropbox.com/s/apkj9paktrso132/River%20Steering%20Commitee%20Meeting%20%25231%20Agenda%2006%2005%2014-%20FINAL.pdf?dl=0">Meeting agenda</a><br></li>
<li><a href="https://dl.dropbox.com/s/7tlm2rh4qfzv253/140605_RCPSC_Meeting%201_June5.pdf?dl=0">Presentation</a><br></li>
</ul>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-river-corridor-plan-steering-committee-river-tou" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">River Corridor Plan Steering Committee - River Tour</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-06-11T16:00:00Z">June 11, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">
1:30 p.m. – 5:00 p.m.<br>
<ul>
<li><a href="https://dl.dropbox.com/s/cds72gfsvlij9xq/Committee%20Agenda%20June%2011th%20-%20Tour%20de%20Grand%20FINAL.pdf?dl=0">Agenda</a></li>
</ul>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-grand-river-restoration-steering-committee-2" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Grand River Restoration Steering Committee</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-06-23T16:00:00Z">June 23, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">
3:30pm – 5:00pm <br>Grand Valley Metro Council Main Conference Room
678 Front Avenue NW, Suite 200
Grand Rapids, MI. 49504<br>
<ul>
<li><a href="https://dl.dropbox.com/s/liuin7vpao2iqlt/River%20Restoration%20Steering%20Committee%20Agenda%2006-23-14.pdf?dl=0">Agenda</a><br></li>
<li><a href="https://dl.dropbox.com/s/3mvmo1ymiui1lbw/June%2023%20Steering%20Committee%20Meeting.pptx.pdf?dl=0">Presentation</a><br></li>
</ul>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-downtown-steering-committee-3" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Downtown Steering Committee</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-07-17T16:00:00Z">July 17, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">
<ul>
<li><a href="https://dl.dropbox.com/s/u6ws84fyly209pv/140717_DowntownSteeringCommittee_July17.pdf?dl=0">Presentation</a><br></li>
</ul>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-river-corridor-plan-steering-committee" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">River Corridor Plan Steering Committee</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-07-17T16:00:00Z">July 17, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">
<ul>
<li><a href="https://dl.dropbox.com/s/gqnc8n92akwaq6w/140717_RCPSC_Meeting%202_July17.pdf?dl=0">Presentation</a><br></li>
</ul>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-river-corridor-plan-steering-committee-2" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">River Corridor Plan Steering Committee</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-08-07T16:00:00Z">August 7, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">
3:00 p.m. – 5:00 p.m.<br>
<ul>
<li><a href="https://dl.dropbox.com/s/8vn1s64cmd079gk/RCPSC%20August%207th%20Committee%20Agenda.pdf?dl=0">Agenda</a><br></li>
<li><a href="https://dl.dropbox.com/s/9cdh5s2u0u8ke4k/140807_RCPSC_Meeting%203_August7.pdf?dl=0">Presentation</a><br></li>
<li><a href="https://dl.dropbox.com/s/81oxcat7gkn40gt/RCPSC%20Roles%20and%20Responsibilities.pdf?dl=0">Committee roles and responsibilities</a><br></li>
</ul>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-grand-river-restoration-steering-committee-3" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Grand River Restoration Steering Committee </a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-08-15T16:00:00Z">August 15, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">
1:30 pm – 3:30 pm <br>Grand Valley Metro Council Main Conference Room
678 Front Avenue NW, Suite 200
Grand Rapids, MI. 49504 <br>
<ul>
<li><a href="https://dl.dropbox.com/s/5uthruaefy5xpnl/River%20Restoration%20Steering%20Committee%20Agenda%2008-15-14.pdf?dl=0">Agenda</a><br></li>
<li><a href="https://dl.dropbox.com/s/gu3hj6xnuu7pusp/August%2015th%20Steering%20Committee%20Meeting%20Powerpoint.pptx.pdf?dl=0">Presentation</a><br></li>
</ul>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-downtown-steering-committee-4" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Downtown Steering Committee</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-09-18T16:00:00Z">September 18, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">
<ul>
<li><a href="https://www.dropbox.com/s/gcaye7nwnep04cy/DowntownSteeringCommittee_Sep18_FINAL_2.ppt?dl=0">Presentation</a><br></li>
</ul>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-grand-river-restoration-steering-committee-4" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Grand River Restoration Steering Committee</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-09-17T15:00:00Z">September 18th, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">
Thursday, September 18th, 2014 3:00 p.m. – 5:00 p.m.<br>
Seidman College of Business. 50 Front Ave SW, Grand Rapids, MI 49504<br>
<ul>
<li><a href="https://dl.dropbox.com/s/6h7ioesgkmsy5z9/September%2016th%20Steering%20Committee%20Meeting%20Powerpoint.pdf?dl=0">Slides from the meeting</a></li>
<li><a href="https://dl.dropbox.com/s/252d0panlj6zhv9/RCPSC%20September%2018th%20Committee%20Agenda.docx?dl=0">Agenda</a></li>
<li><a href="https://dl.dropbox.com/s/0s589bdslscd2hz/Guiding%20Principles.docx?dl=0">Guiding Principles document</a></li>
<li><a href="https://dl.dropbox.com/s/3tfztj7ow9lrbel/Meeting%20Packet%20Final.docx?dl=0">Meeting packet</a>, including Guiding Principles, Organizational models, Schedule, Minutes</li>
</ul>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-black-hills-mini-series-meeting-1" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Black Hills Mini-Series Meeting #1</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-11-13T17:00:00Z">November 13, 2014</h5>
<div class="row event-details hide" data-tags="Black Hills;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Black Hills Community Center
<br>1035 Godfrey Ave<br>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-west-grand-mini-series-meeting-1" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">West Grand Mini-Series Meeting #1</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-11-17T17:00:00Z">November 17, 2014</h5>
<div class="row event-details hide" data-tags="West Grand;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Harrison Park Elementary (Cafeteria)
<br>1440 Davis Ave NW<br>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-northwest-regional-public-meeting" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Northwest Regional Public Meeting</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-11-18T17:00:00Z">November 18, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Union High School (Cafeteria/Media Center)<br>1800 Tremont Blvd. NW</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-southeast-regional-public-meeting" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Southeast Regional Public Meeting</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-11-19T17:00:00Z">November 19, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Ottawa Hills High School (Mall Area)<br>2055 Rosewood SE</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-roosevelt-park-mini-series-meeting-1" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Roosevelt Park Mini-Series Meeting #1</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-12-02T17:00:00Z">December 2, 2014</h5>
<div class="row event-details hide" data-tags="Roosevelt Park;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br><br>Cesar E. Chavez Elementary School (Cafeteria/Gym)
<br>1205 Grandville Ave SW<br>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-creston-mini-series-meeting-1" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Creston Mini-Series Meeting #1</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-12-03T17:00:00Z">December 2, 2014</h5>
<div class="row event-details hide" data-tags="Creston;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Riverside Middle School (Cafeteria)
<br>265 Eleanor St NE<br>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-northeast-regional-public-meeting" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Northeast Regional Public Meeting</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-12-04T17:00:00Z">December 4, 2014</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>City High Middle School (Cafeteria)<br>1720 Plainfield NE</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-heritage-hill-mini-series-meeting-1" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Heritage Hill Mini-Series Meeting #1</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-12-09T17:00:00Z">December 9, 2014</h5>
<div class="row event-details hide" data-tags="Heritage Hill;">
<div class="medium-7 columns">
<div class="event-description project-text-content">5:30pm - 7:00pm<br>Cornerstone Church<br>48 Lafayette SE</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-swan-jban-mini-series-meeting-1" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">SWAN / JBAN Mini-Series Meeting #1</a></h4>
<h5 class="event-datetime subheader" data-datetime="2014-12-10T17:00:00Z">December 10, 2014</h5>
<div class="row event-details hide" data-tags="SWAN/JBAN;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Sibley Elementary (Cafeteria/Gym)<br>943 Sibley NW</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<!-- info about the public forum on Jan 15th -->
<li class="event">
<span id="event-swan-jban-mini-series-meeting-1" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">GR Forward Thinking Speaker Series and Public Forum </a></h4>
<h5 class="event-datetime subheader" data-datetime="2015-01-15T17:00:00Z">January 15, 2015</h5>
<div class="row event-details hide" data-tags="">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:00pm - 8:00pm<br>Kendall College of Art and Design’s Woodbridge N. Ferris Building<br>17 Pearl St. NW.<br><a href="http://us6.campaign-archive2.com/?u=0dae289f37b739d7583f01f21&id=81f9113857&e=97a4c105e4">More information</a>.
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-roosevelt-park-mini-series-meeting-2" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Roosevelt Park Mini-Series Meeting #2</a></h4>
<h5 class="event-datetime subheader" data-datetime="2015-01-27T17:00:00Z">January 27, 2015</h5>
<div class="row event-details hide" data-tags="Roosevelt Park;">
<div class="medium-7 columns">
<div class="event-description project-text-content">5:00pm - 7:00pm<br><br>Cook Library Center
<br>1100 Grandville Ave SW 49503<br>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-belknap-mini-series-meeting-1" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Belknap Mini-Series Meeting #1</a></h4>
<h5 class="event-datetime subheader" data-datetime="2015-01-13T17:00:00Z">January 13, 2015</h5>
<div class="row event-details hide" data-tags="Belknap;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:00pm - 7:00pm<br>Belknap Commons<br>751 Lafayette NE<br><br><br>(Dates for other Belknap community meetings TBD)</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-black-hills-mini-series-meeting-2" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Black Hills Mini-Series Meeting #2</a></h4>
<h5 class="event-datetime subheader" data-datetime="2015-01-15T17:00:00Z">January 15, 2015</h5>
<div class="row event-details hide" data-tags="Black Hills;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Black Hills Community Center <br>1035 Godfrey Ave<br></div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-creston-mini-series-meeting-2" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Creston Mini-Series Meeting #2</a></h4>
<h5 class="event-datetime subheader" data-datetime="2015-01-21T17:00:00Z">January 21, 2015</h5>
<div class="row event-details hide" data-tags="Creston;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Riverside Middle School (Cafeteria) <br>265 Eleanor St NE<br></div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-west-grand-mini-series-meeting-2" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">West Grand Mini-Series Meeting #2</a></h4>
<h5 class="event-datetime subheader" data-datetime="2015-01-26T17:00:00Z">January 26, 2015</h5>
<div class="row event-details hide" data-tags="West Grand;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Harrison Park Elementary (Cafeteria)
<br>1440 Davis Ave NW<br>
</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-swan-jban-mini-series-meeting-2" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">SWAN / JBAN Mini-Series Meeting #2</a></h4>
<h5 class="event-datetime subheader" data-datetime="2015-01-28T17:00:00Z">January 28, 2015</h5>
<div class="row event-details hide" data-tags="SWAN/JBAN;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Sibley Elementary (Cafeteria/Gym)<br>943 Sibley NW</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-heritage-hill-mini-series-meeting-2" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Heritage Hill Mini-Series Meeting #2</a></h4>
<h5 class="event-datetime subheader" data-datetime="2015-02-10T17:00:00Z">February 10, 2015</h5>
<div class="row event-details hide" data-tags="Heritage Hill;">
<div class="medium-7 columns">
<div class="event-description project-text-content">5:30pm - 7:00pm<br>Cornerstone Church<br>48 Lafayette SE</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-swan-jban-mini-series-meeting-3" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">SWAN / JBAN Mini-Series Meeting #3</a></h4>
<h5 class="event-datetime subheader" data-datetime="2015-02-18T17:00:00Z">February 18, 2015</h5>
<div class="row event-details hide" data-tags="SWAN/JBAN;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Sibley Elementary (Cafeteria/Gym)<br>943 Sibley NW</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-roosevelt-park-mini-series-meeting-3" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Roosevelt Park Mini-Series Meeting #3</a></h4>
<h5 class="event-datetime subheader" data-datetime="2015-02-19T17:00:00Z">February 19, 2015</h5>
<div class="row event-details hide" data-tags="Roosevelt Park;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br><br>Cesar E. Chavez Elementary School (Cafeteria/Gym) <br>1205 Grandville Ave SW<br></div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-creston-mini-series-meeting-3" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">Creston Mini-Series Meeting #3</a></h4>
<h5 class="event-datetime subheader" data-datetime="2015-02-23T17:00:00Z">February 23, 2015</h5>
<div class="row event-details hide" data-tags="Creston;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Riverside Middle School (Cafeteria) <br>265 Eleanor St NE<br></div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>
<ol class="attachment-list no-bullet"></ol>
</div>
</div>
</div>
</div>
</li>
<li class="event">
<span id="event-west-grand-mini-series-meeting-3" class="event-anchor"></span>
<h4 class="event-title no-margin-top"><a href="#" class="show-event-details">West Grand Mini-Series Meeting #3</a></h4>
<h5 class="event-datetime subheader" data-datetime="2015-02-23T17:00:00Z">February 23, 2015</h5>
<div class="row event-details hide" data-tags="West Grand;">
<div class="medium-7 columns">
<div class="event-description project-text-content">6:30pm - 8:00pm<br>Harrison Park Elementary (Cafeteria) <br>1440 Davis Ave NW</div>
</div>
<div class="medium-5 columns">
<div class="attachments-region">
<div>