-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
128 lines (121 loc) · 4.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Community Action Maps!</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="leaflet-0.5.1/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="leaflet-0.5.1/leaflet.ie.css" />
<![endif]-->
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<header class="banner" role="banner">
<h1>Community <br><span>Action Maps!</span></h1>
</header>
<nav id="tabs" class="tabs">
<a class="programs-tab" href="#">
<img src="img/our-programs.png" alt="Our Programs">
Our Programs
</a>
<a class="demos-tab" href="#">
<img src="img/area-demographics.png" alt="Area Demographics">
Area Demographics
</a>
<a class="resources-tab" href="#">
<img src="img/local-resources.png" alt="Local Resources">
Local Resources
</a>
</nav>
<section class="controls" id="controls">
<div id="programs">
</div>
<div id="demos">
</div>
<div id="resources">
</div>
</section>
<section class="main clearfix" role="main">
<div class="map-wrap">
<div id="map" class="map"></div>
</div>
<p id="censusInfo" style="display: none"></p>
<div id="legend" class="legend">
<div class="key">
<h2>HEAD START 2012</h2>
<div class="legend_section">
<h3>Head Start Recipients</h3>
<ul class="legend_ranges clearfix">
<li id="legend_0_0"><span class="swatch"></span> 0%</li>
<li id="legend_0_1"><span class="swatch"></span> 1-5%</li>
<li id="legend_0_2"><span class="swatch"></span> 5-10%</li>
<li id="legend_0_3"><span class="swatch"></span> Over 10%</li>
</ul>
</div>
<div class="legend_section clearfix">
<h3>Local Poverty Overlay</h3>
<ul class="legend_ranges">
<li id="legend_1_0"><span class="swatch"></span> 0-5%</li>
<li id="legend_1_1"><span class="swatch"></span> 5-15%</li>
<li id="legend_1_2"><span class="swatch"></span> 15-25%</li>
<li id="legend_1_3"><span class="swatch"></span> 25% and above</li>
</ul>
</div>
</div>
<div class="background"></div>
</div>
</section>
<footer id="colophon" class="colophon" role="contentinfo">
<div class="organizations">
<a class="ca-logo" href="http://communityaction.us/">
<img src="img/ca-logo.png" alt="Community Action" width="276" height="65">
</a>
<a href="http://www.census.gov/">
<img src="img/census-logo.png" alt="US Census Bureau" width="155" height="65">
</a>
<a href="http://hackforwesternmass.org/">
<img src="img/h4wm-logo.png" alt="Hack for Western Mass" width="134" height="65">
</a>
</div>
<div class="builders">
</div>
</footer>
<script src="leaflet-0.5.1/leaflet-src.js"></script>
<script src="js/vendor/jquery-1.10.1.min.js"></script>
<script>
/* This was js/main.js */
$(function(){
$('a.programs-tab').click(function() {
$('#programs').toggle();
$('#demos').hide();
$('#resources').hide();
});
$('a.demos-tab').click(function(){
$('#demos').toggle();
$('#programs').hide();
$('#resources').hide();
});
$('a.resources-tab').click(function() {
$('#resources').toggle();
$('#demos').hide();
$('#programs').hide();
});
});
</script>
<script src="js/map.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<!--<script>
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src='//www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>-->
</body>
</html>