-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
55 lines (44 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Radio Pyo : Free music written in Python</title>
<link rel="stylesheet" type="text/css" href="website/css/playBtn.css" />
<link rel="stylesheet" type="text/css" href="website/css/style.css" />
<link rel="icon" type="image/png" href="website/assets/favicon.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="https://use.fontawesome.com/releases/v5.15.3/js/all.js" data-auto-replace-svg="nest"></script>
<script src="website/js/utils.js"></script>
<script src="songs/songs_metadata.js"></script>
</head>
<body id="body">
<h1>Radio Pyo</h1>
<h3>Free music written in Python</h3>
<div class="main-content">
<button id="prevButton" class='button control-button left' disabled><i class="fas fa-step-backward"></i></button>
<button id="playButton" class='button'></button>
<audio id="audio">
<source id="audioSource" src="" type="audio/ogg">
Your browser does not support the audio element.
</audio>
<button id="nextButton" class='button control-button right'><i class="fas fa-step-forward"></i></button>
<div class="song-info">
<p class="song-title">Now playing <span id="title" class="italic">A SONG</span> by
<span id="author">AN AUTHOR</span></p>
<p class="duration">(<span id="duration">X</span> seconds)</p>
</div>
</div>
<div class="information">
<p>
Join pyo <a href="https://groups.google.com/forum/#!forum/pyo-discuss" target="_blank">mailing list</a> to chat with the
composers or to submit your own music!<br>
Get pyo at Ajax Sound Studio <a href="http://ajaxsoundstudio.com/software/pyo/" target="_blank">website</a><br>
You can also use the <a href="http://acaia.ca:8000/radiopyo.ogg.m3u">streaming source</a> in your
preferred player<br>
The source code of all compositions are <a href="https://github.com/tiagovaz/radiopyo" target="_blank">freely (as
freedom) available</a><br>
</p>
</div>
<script type="text/javascript" color="32,32,32" opacity='0.7' zIndex="-2" count="99" src="website/js/canvas-nest.js"></script>
</body>
</html>