-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (56 loc) · 2.56 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
<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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Debate Watch</title>
<link rel="stylesheet" href="bower_components/octicons/octicons/octicons.css">
<link rel="stylesheet" href="bower_components/jquery.ui/themes/base/core.css">
<link rel="stylesheet" href="bower_components/jquery.ui/themes/base/slider.css">
<link rel="stylesheet" href="bower_components/jquery.ui/themes/base/theme.css">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style type="text/css">
body { padding-top: 60px; }
nav {height: 60px; }
/* .navigation .octicon { width: 64px;} */
div#page {width: 940px; }
div#player {display:inline-block; }
div#slider {display:inline-block; height: 360px; margin-left:1em; }
div#timeline {margin-top:1em; margin-bottom:1em; }
footer {margin-top: 1em; margin-bottom: 2em; }
.line {fill: none; stroke: steelblue; stroke-width: 1.5px; }
</style>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<a class="navbar-brand" href="#"><span class="mega-octicon octicon-podium"></span></a>
</div>
</nav>
<div id="page" class="container">
<ul style="margin-top:2em;">
<li><a href="youtube.html">YouTube Player (for YouTube videos only)</a></li>
<li><a href="cspan.html">JW Player (for downloaded CSpan or YouTube videos)</a></li>
</ul>
</div>
<footer class="container">
<hr>
<a href="https://github.com/debate-watch/poc">source</a>
</footer>
<script src="bower_components/d3/d3.min.js" charset="utf-8"></script>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/jquery.ui/ui/core.js"></script>
<script src="bower_components/jquery.ui/ui/widget.js"></script>
<script src="bower_components/jquery.ui/ui/mouse.js"></script>
<script src="bower_components/jquery.ui/ui/slider.js"></script>
<script type="text/javascript">
</script>
</body>
</html>