-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (61 loc) · 2.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"><title>Twitch24</title>
<link rel="stylesheet" href="css/qunit-1.19.0.css">
<!-- Bootstrap compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"/>
<link rel="stylesheet" href="js/lib/bootstrap-335/css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/style.css"/>
<link href='https://fonts.googleapis.com/css?family=Open+Sans|Lato:300|Exo+2:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/pure-drawer.css"/>
<script src="js/holder.js"></script>
</head>
<body>
<!-- <script>
// Relocate the Qunit setup near the closing head tag
document.write('<div id="qunit"></div>' + '<div id="qunit-fixture"></div>');
</script> -->
<!-- New browser tech requires these to be at the top now -->
<!-- comment them out when you don't want to use them -->
<!-- <div id="qunit"></div> -->
<!-- <div id="qunit-fixture"></div> -->
<!-- Comment content out when running test suite -->
<div class="pure-container" data-effect="pure-effect-push">
<input type="checkbox" id="pure-toggle-left" class="pure-toggle" data-toggle="left"/>
<label class="pure-toggle-label" for="pure-toggle-left" data-toggle-label="left"><span class="pure-toggle-icon"></span></label>
<nav class="pure-drawer" data-position="left">
<p style="padding: 100px 20px; margin: 0;">
<ul>
<li><a id="getAll">all channels</a></li>
<li><a id="getOnline">online</a></li>
<li><a id="getOffline">offline</a></li>
<li>--------</li>
<li><a id="aboutPage">About</a></li>
<li>--------</li>
<li><a id="search">Search 4 more</a></li>
</ul>
</p>
</nav>
<div class="pure-pusher-container">
<div class="pure-pusher">
<!--<p style="width: 300px; height: 1800px; margin: 100px auto;">-->
<div class="container special-width no-gutter">
<!--todo append to end of title - glyphicon-play-->
<div id="maintitle" class="no-gutter text-center col-md-12">TWITCH24
<span id="twitch_glyph" class="glyphicon glyphicon-play" aria-hidden="true"></span>
</div>
<div id="onlinechannels" class="no-gutter col-md-12"></div>
<div id="offchannels" class="no-gutter col-md-12"></div>
<div id="allchannels" class="no-gutter col-md-12"></div>
</div>
<!--</p>-->
</div>
</div>
<label class="pure-overlay" for="pure-toggle-left" data-overlay="left"></label>
</div>
</body>
<!--//bottom so page loads first. no wait on scripts-->
<script data-main="js/unittestsmain" src="js/require.js"></script>
</html>