-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (40 loc) · 1.62 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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="icon"
type="image/png"
href="favicon.png">
<!--
live reload script
(comment this out) build:remove
<script src="http://localhost:35729/livereload.js"></script>
(comment this out) /build
-->
<script src="dev/js/libs/topojson.js"></script>
<script src="dev/js/libs/d3.min.js"></script>
<title>NPR One Station Engagement</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="docs/css/style.css">
</head>
<body class="transition">
<header>
<h1 class="page-title">NPR One Station Engagement</h1>
<p class="page-description">Use the filters below to highlight participation in NPR One according to whether a station contributes newscasts, local stories, both, or neither. Circle size is based on a station’s CUME.</p>
<p class="page-description "><span class="special">U.S. CUME: 4,959,792 according to Triton Webcast Metrics</span></p>
</header>
<nav class="navigation">
<ul class="button-group" id="toggler">
<li data-view="eligible" class="eligible active">All Eligible</li>
<li data-view="newscasts" class="newscasts">Uploads Newscasts</li>
<li data-view="local" class="local">Uploads Local Stories</li>
<li data-view="newscasts-and-local" class="newscasts-and-local">Uploads Both</li>
<li data-view="neither" class="neither">Uploads Neither</li>
</ul>
</nav>
</nav>
<script src="dev/js/libs/jquery.js"></script>
<script src="dev/js/main.js"></script>
</body>
</html>