-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (112 loc) · 5.23 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<html>
<head>
<!-- metas -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Discrete SoundCloud, YouTube and MixCloud player for use in the office or University">
<meta name="keywords" content="office player, reproductor de oficina, player, soundcloud, youtube, mixcloud, discrete, office, work, university, school, reproductor, disimular, trabajo, oficina">
<meta name="author" content="Ángel Muñoz Sagaseta de Ylurdoz (@angelmunozs)">
<!-- favicon -->
<link id="favicon" rel="icon" href="favicon.ico">
<title>
Office Player
</title>
<!-- jQuery 1.11.2 -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<!-- Font Awesome 4.3.0 -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- Own CSS -->
<link rel="stylesheet" href="css/app.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<!-- Own Javascript -->
<script src="js/app.js" type="text/javascript"></script>
<!-- Analytics -->
<script src="js/analytics.js" type="text/javascript"></script>
</head>
<body>
<div class="container-fluid">
<div class="main">
<!-- Webpage URL -->
<div class="col-xs-12 header-nav">
<div class="input-group">
<div class="input-group-addon" id="webpage-button">
<span class="fa fa-globe"></span>
</div>
<input type="text" class="form-control" id="webpage-url" placeholder="URL from webpage (example: http://www.universidad.es)" autofocus/>
<!-- Supported platforms -->
<a href="#" id="youtube-link" class="input-group-addon platform-link">
<div class="platform-addon" id="youtube-addon"><img class="source-icon" src="images/yt_sm.png"></div>
</a>
<a href="#" id="soundcloud-link" class="input-group-addon platform-link">
<div class="platform-addon" id="soundcloud-addon"><img class="source-icon" src="images/sc_sm.png"></div>
</a>
<a href="#" id="mixcloud-link" class="input-group-addon platform-link">
<div class="platform-addon" id="mixcloud-addon"><img class="source-icon" src="images/mc_sm.png"></div>
</a>
</div>
</div>
<div class="col-xs-12 cookie-message">
This website uses cookies to improve your browsing experience. If you continue browsing, we consider that you agree to their use.
<a href="#" id="show-cookie-policy">More information</a>
<a href="#" id="accept-cookie-policy"><i class="fa fa-times pull-right"></i></a>
</div>
<!-- Web page -->
<div id="webpage-container" class="col-xs-12">
<iframe id="webpage-iframe" src="intro.html">
<!-- Container -->
</iframe>
</div>
</div>
<navbar class="navbar navbar-default navbar-fixed-bottom">
<!-- YouTube -->
<div class="youtube player col-xs-12" id="youtube-player">
<div class="col-xs-12" id="youtube-player-part-1">
<div class="input-group col-xs-12">
<div class="input-group-addon" id="youtube-button">
<span class="glyphicon glyphicon-play"></span>
</div>
<input type="text" id="youtube-url" class="form-control" placeholder="YouTube URL (example: https://www.youtube.com/watch?v=BLya0SiphU8)">
</div>
</div>
<div class="col-xs-12" style="margin-top:10px;" id="youtube-player-part-2">
<iframe id="youtube-iframe" src="loading.html"></iframe>
</div>
</div>
<!-- SoundCloud -->
<div class="soundcloud player col-xs-12" id="soundcloud-player">
<div class="col-xs-12" id="soundcloud-player-part-1">
<div class="input-group col-xs-12">
<div class="input-group-addon" id="soundcloud-button">
<span class="glyphicon glyphicon-play"></span>
</div>
<input type="text" id="soundcloud-url" class="form-control" placeholder="SoundCloud URL (example: https://soundcloud.com/bennypagemusic/studio-mix-recorded-for-bbc1xtra-742015)">
</div>
</div>
<div class="col-xs-12" style="margin-top:10px;" id="soundcloud-player-part-2">
<iframe id="soundcloud-iframe" src="loading.html"></iframe>
</div>
</div>
<!-- MixCloud -->
<div class="mixcloud player col-xs-12" id="mixcloud-player">
<div class="col-xs-12" id="mixcloud-player-part-1">
<div class="input-group col-xs-12">
<div class="input-group-addon" id="mixcloud-button">
<span class="glyphicon glyphicon-play"></span>
</div>
<input type="text" id="mixcloud-url" class="form-control" placeholder="MixCloud URL (example: https://www.mixcloud.com/modek/modek-mixtape-for-off-radio-3-spain/)">
</div>
</div>
<div class="col-xs-12" style="margin-top:10px;" id="mixcloud-player-part-2">
<iframe id="mixcloud-iframe" src="loading.html"></iframe>
</div>
</div>
</navbar>
</div>
</body>
</html>