-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (81 loc) · 3.24 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<title>devstream.tv</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/main.css" rel="stylesheet" media="screen">
<link href="css/nprogress.css" rel="stylesheet" media="screen">
</head>
<body>
<a href="https://github.com/andzdroid/devstream.tv"><img class="ribbon" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#" id="title">devstream.tv</a>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="span8" style="min-height: 300px">
<div id="stream" class="well">
<p>Live video streams of people who may or may not be developing games!</p>
<p>Select a stream on the right</p>
</div>
</div>
<div class="span4">
<div class="well" style="max-width: 340px; padding: 8px 0;">
<ul class="nav nav-list">
<li class="nav-header streams_header">Online streams <a style="display:inline;" class="pull-right"id="refresh"><i class="icon-repeat"></i></a></li>
<div id="streams"></div>
<li class="divider"></li>
<li><a target="_blank" href="https://github.com/andzdroid/devstream.tv">Add more streams!</a></li>
<li><small>Streams are not necessarily broadcasting game development at all times.</small></li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="span12">
<p class="text-center">
<small>
Are you a developer? Want to add your stream?
<a href="https://github.com/andzdroid/devstream.tv">Submit a pull request or an issue!</a>
</small>
</p>
</div>
</div>
</div>
<script id="menu_item" type="text/template">
<li>
<a href="#">{0} <small>({1} viewers)</small></a>
</li>
</script>
<script id="twitch_embed" type="text/template">
<object type="application/x-shockwave-flash" id="live_embed_player_flash" bgcolor="#000000"
height="{1}"
width="{0}"
data="http://www.twitch.tv/widgets/live_embed_player.swf?channel={2}">
<param name="allowFullScreen" value="true" />
<param name="allowScriptAccess" value="always" />
<param name="allowNetworking" value="all" />
<param name="movie" value="http://www.twitch.tv/widgets/live_embed_player.swf" />
<param name="flashvars" value="hostname=www.twitch.tv&channel={2}&auto_play=true&start_volume=25" />
</object>
</script>
<script id="twitch_chat" type="text/template">
<iframe frameborder="0" scrolling="no" id="chat_embed"
src="http://twitch.tv/chat/embed?channel={2}&popout_chat=true"
height="{1}"
width="{0}">
</iframe>
</script>
<script src="lib/jquery-1.10.2.min.js"></script>
<script src="lib/bootstrap.min.js"></script>
<script src="lib/twitch.min.js"></script>
<script src="lib/async.js"></script>
<script src="lib/nprogress.js"></script>
<script src="src/main.js"></script>
</body>
</html>