-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathabout.html
103 lines (82 loc) · 4.79 KB
/
about.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
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Zilla+Slab" rel="stylesheet">
<!-- CSS Libs -->
<link rel="stylesheet" href="./lib/css/bootstrap.min.css">
<!-- JS Libs -->
<script src="./lib/js/jquery.min.js"></script>
<script src="./lib/js/bootstrap.min.js"></script>
<!-- CSS Src -->
<!-- less.js to parse stylesheet/less -->
<script src="./lib/js/less.min.js"></script>
<style>
@import url(https://fonts.googleapis.com/css?family=Zilla+Slab);
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
body {
background-color: #E5ECEA;
}
img {
padding-top: 15px;
}
h3 {
font-family: 'Zilla Slab', sans-serif;
font-size: 250%;
}
p {
font-family: 'Open Sans', sans-serif;
}
hr {
border-top: 1px solid gray;
}
</style>
</head>
<body>
<div class="container">
<div class="row" >
<div class="col-md-6 col-xs-6"><br>
<button type="button" class="btn btn-default" id="back-button">
<a href="./index.html" id="back-link"><span class="glyphicon glyphicon-arrow-left"></span> Back</a>
</button>
</div>
<div class="col-md-6">
<img src="data/logo.jpg" class="img-responsive pull-right" id="image">
</div>
</div><br><br>
<div class="row" id="test">
<div class="col-md-12">
<h3>About</h3>
<hr>
<p>The <b>Englewood Data Hub</b> (EDH) brings together non-profit organizations providing child and youth services in the greater Englewood community to foster dialogue, collaboration, advocacy and community building. The EDH is supported by The Joseph and Bessie Feinberg Foundation.</p>
<p>In 2016, the <b>Englewood Data Hub</b> conducted an asset scan of services available to youth in Englewood and West Englewood to provide a resource to identify organizations where youth could be referred for needed services in the greater Englewood community. To add or correct information in the Resource Directory, send an email to [email protected].</p>
<p>This web-based project was designed and implemented in 2017 by a group of researchers at the <b><a href="https://www.evl.uic.edu/">Electronic Visualization Laboratory</a></b>, <b><a href="https://www.uic.edu/">University of Illinois at Chicago</a></b>, with funding from The Joseph and Bessie Feinberg Foundation. Details are available <a href="https://www.evl.uic.edu/entry.php?id=2331">here</a>.</p>
<p>In addition to using the data from the EDH asset scan, the project was built using several Open Source components. The source code of these open source components along with license information can be found below. We acknowledge and are grateful to these developers for their contributions to the open source community.</p>
<p>Project: <a href="https://www.openstreetmap.org/#map=4/38.01/-95.84">OpenStreetMap®</a> by the <a href="http://wiki.osmfoundation.org/wiki/Main_Page">OpenStreetMap Foundation (OSMF)</a>
<br>License: <a href="http://opendatacommons.org/licenses/odbl/">Open Data Commons Open Database License (ODbL)</a></p>
<p>Project: <a href="https://www.mapbox.com/">MapBox</a>
<br>License: <a href="https://www.mapbox.com/about/open/">Various (mostly BSD)</a></p>
<p>Projects: <a href="http://getbootstrap.com/">Bootstrap</a> and <a href="http://lesscss.org/">Less</a>
<br>License: <a href="https://github.com/less/less-docs/blob/master/LICENSE-MIT">MIT</a>, documentation under <a href="https://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a></p>
<p>Project: <a href="https://d3js.org/">D3</a>
<br>License: <a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-clause</a></p>
<p>Project: <a href="https://jquery.com/">jQuery</a>
<br>License: <a href="https://tldrlegal.com/license/mit-license">MIT</a> and <a href="https://jquery.org/license/">jQuery License</a></p>
<p>Projects: <a href="http://leafletjs.com/">Leaflet</a> and <a href="https://github.com/ghybs/Leaflet.FeatureGroup.SubGroup">Leaflet.FeatureGroup.SubGroup</a>
<br>License: <a href="https://opensource.org/licenses/BSD-2-Clause">BSD-2-clause</a></p>
<p>Projects: <a href="https://lodash.com/">Lodash</a>, <a href="https://github.com/mourner/rbush">RBush</a>, <a href="http://turfjs.org/">Turf.js</a>, and <a href="https://github.com/Leaflet/Leaflet.markercluster">Leaflet.markercluster</a>
<br>License: <a href="https://tldrlegal.com/license/mit-license">MIT</a></p>
</div>
</div>
</div>
<script>
$(document).ready(() => {
$('a[id!="back-link"]').attr("target","_blank");
$("#back-button").on("click", () => {
location.href = $("#back-button a").attr("href");
});
});
</script>
</body>