-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeeds.html
66 lines (66 loc) · 3.13 KB
/
feeds.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
<html>
<head>
<title>ChromeCast by Binomed - Podcasts</title>
<script type="text/javascript" src="js/jquery-2.0.0.min.js"></script>
<link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection">
<link type="text/css" media="screen" rel="stylesheet" href="css/chromecast.css" charset="utf-8" />
<script type="text/javascript" src="js/feeds_1.js"></script>
<script type="text/javascript" src="js/analytics.js"></script>
<meta charset="utf-8">
</head>
<body>
<div class="bodycont">
<!-- <div class="logo"></div> -->
<div class="content">
<div class="title" id="listlabel" style="display:inline-block;">Podcasts</div>
<div id="addfeedlabel" style="width:40px; height:40px; background: url('images/plus.png');background-size: cover; display: inline-block; position:absolute; top: 15px; margin-left: 10px; cursor: pointer;"> </div>
<div id="refreshlabel" style="width:40px; height:40px; background: url('images/reload.png');background-size: cover; display: inline-block; position:absolute; top: 15px; margin-left: 60px; cursor: pointer;"> </div>
<div class="addfeed" id="addFeedBox" style="display:none;">
<a id="closeURL" style="cursor:pointer;float:right;"><img src="images/close.gif" /></a>
<span id="feedurllabel">URL du flux</span><br />
<span id="feedurl"> </span> <input size="40" type="text" name="naUrlPodcast" id="idUrlPodcast" /> <button id="validURL">OK</button>
</div>
<br /><br />
<div style="position:absolute; top: 10px; right: 10px;">
<img src="images/logo-dark.png" height="50" />
</div>
</div>
</div>
<div class="sidebar" id="sidebar" style="background-color:lightblue; width: 300px; height:calc(100% - 70px - 50px); float: left; overflow-y:auto;">
</div>
<div class="contenu" style="background-color:#ffffff; width: calc(100% - 300px); height:calc(100% - 70px - 50px); float: right; overflow-y:auto;">
<table class="table-podcasts" id="table-podcasts">
<thead>
<tr>
<th>Podcast</th>
<th style="width:100px;">Durée</th>
<th style="width:100px;">Actions</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="player">
<div class="player-cover" id="player-cover"></div>
<div class="player-title" id="player-title">
<div class="progress-playing" id="progress-playing"></div>
<div class="title-playing" id="title-playing">ChromeCast</div>
<div class="subtitle-playing" id="subtitle-playing">The podcast player</div>
<div class="progress-text" id="progress-text">-- / --</div>
<div class="progress-buffer" id="progress-buffer">buffering...</div>
</div>
<div class="player-rew" id="player-rew"></div>
<div class="player-play" id="player-play"></div>
<div class="player-for" id="player-for"></div>
<div class="player-vol" id="player-vol">
<div class="player-vol-val" id="player-vol-val"></div>
<div class="player-vol-bg" id="player-vol-bg"></div>
</div>
</div>
<div class="footer">
ChromeCast by <a href="http://binomed.fr/">Binomed</a>
</div>
<script type="text/javascript" src="js/feeds_2.js"></script>
</body>
</html>