-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
54 lines (42 loc) · 1.63 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TinyChart</title>
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" href="http://s.npr.org/templates/css/fonts/GothamSSm.css">
</head>
<body>
<img class="npr-logo" width="70px" height="auto" src="images/tinychart-logo.svg">
<div class="ext-title"><a class="title-link" href="options.html">NPR Analytics Dashboard</a></div>
<div class="site-data">
<div class="section-title">
Concurrent Visits to npr.org
</div>
<div id="concurrent-visits-counter"></div>
<hr>
<div class="section-title">
Most Visited Pages
</div>
<div class="page">
<div id="story-title-0" class="story-title"></div>
<div id="top-pages-path-0" class="path truncate"></div>
<div id="top-pages-visits-0" class="visits"></div>
</div>
<div class="page">
<div id="story-title-1" class="story-title"></div>
<div id="top-pages-path-1" class="path truncate"></div>
<div id="top-pages-visits-1" class="visits"></div>
</div>
<div class="page">
<div id="story-title-2" class="story-title"></div>
<div id="top-pages-path-2" class="path truncate"></div>
<div id="top-pages-visits-2" class="visits"></div>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/popup.js"></script>
</body>
</html>