forked from plamere/spotify-echo-nest-radio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 865 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Echo Nest Radio</title>
<link rel="stylesheet" href="$views/css/buttons.css">
<link rel="stylesheet" href="$views/css/list.css">
<link rel="stylesheet" href="css/enr.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/enr.js"></script>
</head>
<body>
<h2> The Echo Nest Radio </h2>
<div>
<p> Generate a playlist based on <span id="now-playing"> the current song</p>
<button id="go"> Go </button>
</div>
<div id="info"> </div>
<div id="playlist">
<h3 id="cur-playlist"> Current Playlist </h3>
<button id="save"> Save this playlist to Spotify</button>
<div id="radio-tracks"></div>
</div>
</body>
</html>