forked from Code4HR/previous-landing
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
308 lines (255 loc) · 16.4 KB
/
index.html
File metadata and controls
308 lines (255 loc) · 16.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Code for Dayton | A Code for America Brigade</title>
<meta name="description" content="Dayton locals helping to open data and create meaningful web and mobile apps">
<link rel="shortcut icon" href="favicon.ico" />
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/css/bootstrap-combined.min.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
.memberbox{margin-top:15px; margin-bottom:10px;}
.memberbox h2{color:#aaa; font-size:150%; margin-bottom:0}
.carousel-caption .pix-thumb{position:relative; min-width:45px; margin-right:5px; border-radius:6px; width:45px; height:45px; background-image: url(./assets/images/captain.png); background-size: 100% 100%;}
.membercheckin{margin-top:20px; color:#fff}
.carousel-caption{margin-top:100px}
.tip{display:inline-block; position:relative}
</style>
</head>
<body>
<!-- NAVBAR
================================================== -->
<div class="navbar-wrapper">
<!-- Wrap the .navbar in .container to center it within the absolutely positioned parent. -->
<div class="container">
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<!-- Responsive Navbar Part 1: Button for triggering responsive navbar. Include responsive CSS to utilize. -->
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#"><img src="assets/images/logo.png" class="logo" /></a>
<!-- Responsive Navbar Part 2: Place all navbar contents you want collapsed withing .navbar-collapse.collapse. -->
<div class="nav-collapse collapse">
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#partners">Partners</a></li>
<li><a href="#contact">Contact</a></li>
<!-- Read about Bootstrap dropdowns at http://twitter.github.com/bootstrap/javascript.html#dropdowns -->
<li class="dropdown" id="menu1">
<a href="#menu1" class="dropdown-toggle" data-toggle="dropdown">
Resources
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li>
<a href="http://www.meetup.com/Code-for-Dayton/">
<i class=icon-user icon-white></i>
Our Gatherings on Meetup</a>
</li>
<li>
<a href="https://github.com/codefordayton">
<i class=icon-wrench icon-white></i>
Our Code on GitHub</a>
</li>
<li>
<a href="http://codefordayton.uservoice.com/">
<i class=icon-thumbs-up icon-white></i>
Idea List for Civic Apps and Open Data</a>
</li>
<li>
<a href="https://github.com/codefordayton/codeofconduct">
<i class=icon-cog icon-white></i>
Code of Conduct</a>
</li>
<li class="divider"></li>
<li>
<a href="https://twitter.com/search?q=%23cfabrigade">
<i class=icon-retweet icon-white></i>
#cfabrigade - National Tweets</a>
</li>
<li>
<a href="http://codeforamerica.tumblr.com/">
<i class=icon-bullhorn icon-white></i>
Brigade's Tumblr</a>
</li>
</ul>
</li>
<li> <a href="https://secure.codeforamerica.org/page/contribute/default?custom1=Please%20send%20to%20Code%20for%20Dayton"><button type="button" class="btn btn-default btn-sm" style="margin: 0px;"><i class=icon-heart></i> Donate</button></a></li>
</ul>
</div><!--/.nav-collapse -->
</div><!-- /.navbar-inner -->
</div><!-- /.navbar -->
</div> <!-- /.container -->
</div><!-- /.navbar-wrapper -->
<!-- fork me banner, top right
================================================== -->
<a class="forkme" href="https://github.com/codefordayton/codefordayton.github.io"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 100;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<!-- Carousel - only using one at the moment
================================================== -->
<div class="carousel slide">
<div class="carousel-inner">
<div class="item active">
<div class="container">
<div class="carousel-caption">
<h1>We Are Code For Dayton.</h1>
<p class="lead">
We are a local chapter of Code for America Brigade supporting civic hacking in Dayton, Ohio.
</p>
<a class="btn btn-large btn-primary" href="http://www.meetup.com/Code-for-Dayton/">Stop By Our Meetups</a>
</div>
</div>
</div>
</div>
</div><!-- /.carousel -->
<div class="container marketing clearleft">
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<!-- Three columns of text below the carousel -->
<div class="row">
<div class="span4">
<a href="http://www.meetup.com/Code-for-Dayton/"><img src="assets/images/captain.png" alt="CfA Brigade Captain" /></a>
<h2>Come To Our Meetups</h2>
<p>A casual <a href="http://www.meetup.com/Code-for-Dayton/">meetup</a> where
we work on projects and hack open data.</p>
</div><!-- /.span4 -->
<div class="span4">
<a href="https://groups.google.com/a/codeforamerica.org/forum/#!forum/codefordayton"><img src="assets/images/community.png" alt="Community" /></a>
<h2>Join Online Discussions</h2>
<p>
<a href="https://groups.google.com/a/codeforamerica.org/forum/#!forum/codefordayton">An open conversation online</a> about what we're doing now and what's next.</p>
</div><!-- /.span4 -->
<div class="span4">
<a href="http://codeforamerica.org/"><img src="assets/images/cfa_logo_greyscale.png" alt="Code for America" /></a>
<h2>See Our Inspiration</h2>
<p><a href="http://codeforamerica.org/">Code for America</a> is the organization that helped inspire
many of us that we can change our City.
</p>
</div><!-- /.span4 -->
</div><!-- /.row -->
<!-- START THE FEATURETTES -->
<hr class="featurette-divider">
<div id="projects" class="featurette">
<h2 class="featurette-heading" style="text-align: center; margin-bottom: 20px;">Works In Progress</h2>
<div class="row">
<div class="span4">
<a href="esl">
<img name="collide" id="collide" style="display: block; margin-left: auto; margin-right: auto"src="assets/images/noun_project_icon_11002_easel.png" alt="EASL" />
</a>
<h2 style="text-align: center;">English As A Second Language (ESL)</h2>
</div><!-- /.span4-->
<div class="span4">
<a href="/grocer">
<img name="grocer" style="display: block; margin-left: auto; margin-right: auto"src="assets/images/noun_project_icon_5260_map.png" alt="Collider Project" />
</a>
<h2 style="text-align: center;">Grocer</h2>
</div><!-- /.span4-->
<div class="span4">
<a href="https://communities.socrata.com/catalog/code-for-dayton/"><img name="portal" style="display: block; margin-left: auto; margin-right: auto"src="assets/images/noun_project_icon_14774_portal.png" alt="Open Data Portal" /></a>
<h2 style="text-align: center;">Open Data Portal</h2>
</div><!-- /.span4 -->
</div><!-- /.row -->
<div class="row">
<div class="span4">
<a href="http://localwiki.net/dayton"><img name="book" style="display: block; margin-left: auto; margin-right: auto"src="assets/images/noun_project_icon_17900_book.png" alt="Dayton Local Wiki" /></a>
<h2 style="text-align: center;">Dayton Local Wiki</h2>
</div><!-- /.span4 -->
<div class="span4">
<a href="http://github.com/codefordayton/daytonreap"><img name="foreclosure" style="display: block; margin-left: auto; margin-right: auto"src="assets/images/noun_project_icon_50539_foreclosure.png" alt="Dayton REAP" /></a>
<h2 style="text-align: center;">Dayton REAP</h2>
</div>
<div class="span4">
<a href="http://github.com/codefordayton/game"><img name="game" style="display: block; margin-left: auto; margin-right: auto"src="assets/images/noun_project_icon_8609_game.png" alt="Lot Linker" /></a>
<h2 style="text-align: center;">The Game</h2>
</div><!-- /.span4 -->
</div><!-- /.row -->
</div><!-- /.featurette -->
<hr class="featurette-divider">
<div class="featurette">
<a href="http://codefordayton.uservoice.com/"><img name="collide" id="collide" class="featurette-image pull-right" src="assets/images/noun_project_icon_2443_lightbulb.png" alt="Submit your own ideas" /></a>
<h2 class="featurette-heading">Have a great project in mind?<br><span class="muted">Submit it to our <a href="http://codefordayton.uservoice.com/">backlog</a></span></h2>
<p class="lead">We're a community-driven organization. We like to solve problems that can benefit many people. This means giving everyone a voice (and a vote) in our process. If you have a civic project that you'd like us to look at, <a href="http://codefordayton.uservoice.com/">submit it to our backlog</a> and give the community a chance to vote. We pull from the backlog as we finish projects -- ideas with the most votes get worked on first.</a></p>
</div>
<hr class="featurette-divider">
<div class="featurette">
<h2 class="featurette-heading">Looking for a place to jump in? <span class="muted">These might be a good place to start.</span></h2>
<iframe src="https://www.codeforamerica.org/geeks/civicissues/widget?organization_name=Code-for-Dayton&labels=Help Wanted&number=6" width="100%" height="600" frameBorder="0"></iframe>
</div>
<hr class="featurette-divider">
<div class="featurette">
<a href="http://brigade.codeforamerica.org/">
<img name="cfa" id="cfa" class="featurette-image pull-right" src="assets/images/cfa_brigade_logo.png" alt="Code for America Brigade" />
</a>
<h2 class="featurette-heading">Want To Help Your City? <span class="muted">Good, we could use your help.</span></h2>
<p class="lead">We are a <a href="http://brigade.codeforamerica.org/">Code for America Brigade</a>,
which means we're volunteers that contribute
our talents toward improving the way our local governments and community organizations use the web.
Brigade is about action and you're here because you are someone who takes action.
<a href="http://brigade.codeforamerica.org/pages/activities">See what kind of things brigades do</a>, or watch the
<a href="http://codeforamerica.org/2012/03/08/jennifer-pahlka-at-ted-video/">
inspirational TED talk given by Jennifer Pahlka, the founder of Code for America.</a></p>
</div>
<hr class="featurette-divider">
<div class="featurette">
<h2 class="featurette-heading">What is civic hacking?</h2>
<p class="lead">Creating technology that increases civic engagement, building tools for governments to share information, and for citizens to hold governments accountable. Solving problems with code.</p>
<p class="lead">Check out this great video from the Sunlight Foundation:</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/kDFhzNfd-bg" frameborder="0" allowfullscreen></iframe></p>
</div>
<hr class="featurette-divider">
<div class="featurette">
<a href="https://groups.google.com/a/codeforamerica.org/forum/#!forum/codefordayton">
<img name="groups" id="groups" class="featurette-image pull-right" src="assets/images/google_groups.png" alt="Google Groups" />
</a>
<h2 class="featurette-heading">We Discuss Things Online. <span class="muted">Join and Introduce Yourself.</span></h2>
<p class="lead">
Can't make it to a meetup? No problem. We collaborate on projects, ask for help, and post wins
to our <a href="https://groups.google.com/a/codeforamerica.org/forum/#!forum/codefordayton">Code for Dayton forum</a> where you can get new posts in email and reply. We welcome anyone to sign-up... you might just see something you're interested in helping with. </p>
</div>
<hr class="featurette-divider">
<div class="featurette">
<img name="partners" id="partners" class="featurette-image pull-right" src="">
<h2 class="featurette-heading">We Don't Work Alone. <span class="muted">Meet Our Partners.</span></h2>
<p class="lead">Code For Dayton partners with the governments of Dayton, surrounding municipalities, and local non-profit organizations. We are always seeking new partners.</p>
<p class="lead">Our primary municipal partner in Dayton is <a href="https://www.linkedin.com/profile/view?id=68435249">Tyler Hall</a>, a social media specialist for the city.</p>
<p class="lead">We have built projects in conjunction with <a href="http://www.welcomedayton.org/">Welcome Dayton</a> and <a href="https://www.facebook.com/updayton">UpDayton</a>.</p>
<p class="lead">We are always interested in new and interesting projects. Please <a href="#contact">get in touch</a> if you'd like to collaborate with us.</p>
</div>
<hr class="featurette-divider">
<div class="featurette">
<img name="contact" id="contact" class="featurette-image pull-right" src="">
<h2 class="featurette-heading">Want Even More Info? <span class="muted">Contact Us.</span></h2>
<p class="lead">Our organizers are Dave Best(<a href="mailto:dave.e.best@gmail.com">dave.e.best@gmail.com</a> or <a href="https://twitter.com/davidebest">@DavidEBest</a>) and Janet Michaelis (<a href="mailto:janet@codefordayton.org">janet@codefordayton.org</a>). We want to hear from you!</p>
<a href="https://plus.google.com/101164371594260325014" rel="publisher">Find us on Google+</a>
</div>
<hr class="featurette-divider">
<!-- /END THE FEATURETTES -->
<!-- FOOTER -->
<footer>
<p class="pull-right"><a href="#">Back to top</a></p>
<p>...People trying to Make Dayton even better...</p>
<p>Originally built by c4hrva. Site Design Based on <a href="http://getbootstrap.com/">Bootstrap</a>, Some Images Provided by <a href="http://thenounproject.com">The Noun Project</a>.</p>
</footer>
</div><!-- /.container -->
</body>
<script src="assets/js/bootstrap-tooltip.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-37455300-4', 'codefordayton.org');
ga('send', 'pageview');
</script>
</html>