-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathabout.html
More file actions
52 lines (47 loc) · 2.93 KB
/
about.html
File metadata and controls
52 lines (47 loc) · 2.93 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
<!DOCTYPE html>
<html>
<head>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<nav class='navbar navbar-default' id='navbar'>
<section class='container-fluid'>
<section class='navbar-header' id='nav-header-block'>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#nav-links-block" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class='navbar-brand' href='discover.html'>Leverage</a>
</section>
<section class='collapse navbar-collapse' id='nav-links-block'>
<ul class='nav navbar-nav' id='nav-links'>
<li><a href='getting-started.html'>Getting started</a></li>
<li><a href='discover.html'>Discover data</a></li>
<li class='active'><a>About Leverage</a></li>
<li><a href='feedback.html'>Feedback</a></li>
</ul>
</section>
</section>
</nav>
<!-- PAGE CONTENT -->
<div class="container">
<h2>About Leverage</h2>
<p>Leverage takes Philadelphia campaign finance data, analyzes it, and makes it easy for anyone to consume. Our goal is to empower citizens of Philadelphia to use campaign finance data when making informed decisions about who they donate to, who they support, and who they vote for.</p>
<p>The foundation of Leverage is the campaign finance data published by the City of Philadelphia. We apply machine learning techniques to the data to pull out trends and patterns. Finally, we add a layer of simple visualization on top of the analyzed data, allowing any citizen to access the information and understand how candidates are funded.</p>
<h2>Our Guiding Principles</h2>
<ul>
<li>Empower citizens to make informed decisions.</li>
<li>Don't single out individual donors; don't facilitate punitive actions.</li>
<li>Design visualizations so they can be consumed by anyone.</li>
</ul>
<h2>About the Leverage Team</h2>
<p>The team is group of volunteers that strives to create positive social and political change through technology. We come from a variety of backgrounds, industries, and professions.</p>
<p>The team formed during the Code for Philly Democracy Hackathon in March 2016.</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>