-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (95 loc) · 4.12 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Connecticut Town Profiles by CTData Collaborative</title>
<link rel="icon" type="image/png" href="static/favicon.png">
<link href="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/3.0.2/fullpage.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.3/leaflet.css" rel="stylesheet">
<link href="static/style.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/3.0.2/fullpage.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.3/leaflet.js"></script>
</head>
<body>
<div id="fullpage">
<div class="section">
<div class="slide" id="home">
<h1>Connecticut Town Profiles</h1>
<h2>
Two-page reports of demographic and economic information for Connecticut's towns
</h2>
<div class="logos">
<a href="http://www.ctdata.org" target="_blank"><img src="static/logo-ctdata.png"></a>
<span> + </span>
<a href="https://www.advancect.org/" target="_blank"><img src="static/advancect.png"></a>
</div>
</div>
</div>
<div class="section">
<div class="slide" id="map">
<div id="my-map-header">
<p style="margin-bottom:5px;">
Click on a town to download its profile in PDF for
<select name="year">
<option value="2024" selected>2024</option>
<option value="2023">2023</option>
<option value="2021">2021</option>
<option value="2019">2019</option>
<option value="2018">2018</option>
<option value="2017">2017</option>
<option value="2016">2016</option>
</select>
</p>
<p class="subtitle">
Connecticut Town Profile reports are available for 2016–2019, 2021, 2023, and 2024.
</p>
</div>
<ul id="my-map-list" class="scrollable"></ul>
<div id="my-map"></div>
</div>
</div>
<div class="section">
<div class="slide" id="about">
<div>
<h2>About</h2>
<p>
The Connecticut Town Profiles is a project of
<a href="http://www.ctdata.org">CTData Collaborative</a> in partnership with
<a href="https://www.advancect.org/">AdvanceCT</a> (formerly the Connecticut Economic Resource Center).
</p>
<p>
The Connecticut Town Profiles are two-page reports of demographic and
economic information for Connecticut's municipalities, regions, and the state as a whole.
They contain information about population, major employers, education, fiscal information,
labor force, housing and quality of life.
</p>
<p>
These town profiles are the property of AdvanceCT.
They can be used free of charge by external organizations, as long as AdvanceCT and CTData Collaborative are cited.
</p>
<br><br>
<a href="http://www.ctdata.org" target="_blank"><img src="static/logo-ctdata.png"></a>
<a href="https://www.advancect.org/" target="_blank"><img src="static/advancect.png"></a>
</div>
</div>
</div>
</div>
<script src="static/script.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-27854885-11', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>