-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·71 lines (63 loc) · 3.99 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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>Dataproofer</title>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name=viewport content="width=device-width,initial-scale=1">
<link rel=stylesheet href=style.css media=screen title="Primary Stylesheet" charset=utf-8>
<link rel=stylesheet href=https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css>
</head>
<body>
<div id=container>
<header id=title>
<h1><img src=img/dataproofer-logo.png alt=Dataproofer></h1>
</header>
<section id=intro>
<p>Every day, more and more data is created. Journalists, analysts, and data visualizers turn that data into stories and insights.</p>
<p>But before you can make use of any data, you need to know if it’s reliable. Is it weird? Is it clean? Can I use it to write or make a viz?</p>
<p>This used to be a long manual process, using valuable time and introducing the possibility for human error. People can’t always spot every mistake every time, no matter how hard they try.</p>
<p>DataProofer is built to automate this process of checking a dataset for errors or potential mistakes.</p>
</section>
<section id=intro-video>
<iframe src=https://player.vimeo.com/video/163511997 width=640 height=360 frameborder=0 webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<p><a href=https://vimeo.com/159276740>Vocativ - DataProofer</a> from <a href=https://vimeo.com/underpresser>Joe Presser</a> on <a href=https://vimeo.com>Vimeo</a>.</p>
</section>
<section id=use-dataproofer>
<div id=download class=use-section>
<h3>Download</h3>
<ul>
<li><a href=https://github.com/dataproofer/Dataproofer/releases><i class="fa fa-arrow-circle-o-down" aria-hidden=true></i> Mac OS X</a></li>
<li><a href=https://github.com/dataproofer/Dataproofer/releases><i class="fa fa-arrow-circle-o-down" aria-hidden=true></i> Linux</a></li>
<li><a href=https://github.com/dataproofer/Dataproofer/releases><i class="fa fa-arrow-circle-o-down" aria-hidden=true></i> Windows</a></li>
</ul>
</div>
<div id=documentation class=use-section>
<h3>Docs & Support</h3>
<ul>
<li><a href=https://github.com/dataproofer/Dataproofer#getting-started><i class="fa fa-download" aria-hidden=true></i> How to install</a></li>
<li><a href=https://github.com/dataproofer/Dataproofer#creating-a-new-test><i class="fa fa-file-code-o" aria-hidden=true></i> Writing a test</a></li>
<li><a href=https://newsnerdery.slack.com/messages/dataproofer><i class="fa fa-slack" aria-hidden=true></i> Slack</a> <small>via <a href=http://newsnerdery.org/>News Nerdery</a></small></li>
</ul>
</div>
</section>
<section id=contact-us>
<div class=contact-section>
<h4>EMAIL</h4><a href="mailto:dataproofer@dataproofer.org">dataproofer@dataproofer.org</a></div>
<div class=contact-section>
<h4>TWITTER</h4><a href="https://twitter.com/dataproofer">@dataproofer</a></div>
<div class=contact-section>
<h4>GITHUB ISSUES</h4><a href=https://github.com/dataproofer/Dataproofer/issues>Dataproofer/issues</a></div>
</section>
<section id=funding>
<h4>Funded By</h4><img src=img/knight-logo.png>
<br><img src=img/vocativ-logo.png></section>
</div>
<!-- Bring in 3rd-party libraries like D3, Underscore, and jQuery -->
<script src=lib.js charset=utf-8></script>
<!-- The actual script, generated from /coffee/app.coffee -->
<script src=app.js charset=utf-8></script>
</body>
</html>