-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (30 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0-alpha.1/handlebars.min.js"></script>
<script src="/dtfy/app/fastClick.min.js"></script>
<link href="/dtfy/app/style.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Amatic+SC" rel="stylesheet">
</head>
<body>
<script id="result-template" type="text/x-handlebars-template">
<img id="album-cover" class="current album cover" src="{{item.album.images.0.url}}">
<div id="song" class="song name"><p>{{item.name}}</p></div>
<div id="artist" class="artist name"><p>{{item.album.artists.0.name}}</p></div>
</script>
<main>
<button id="prev"><i class="fa fa-fast-backward" aria-hidden="true"></i></button>
<button id="start-stop"></button>
<button id="next"><i class="fa fa-fast-forward" aria-hidden="true"></i></button>
<button id="login-button"><i class="fa fa-power-off" aria-hidden="true"></i></button>
<div id="plop">
<img id="album-cover" class="current album cover" src="">
<div id="song" class="song name"></div>
<div id="artist" class="artist name"></div>
</div>
</main>
<script src="/dtfy/app/dtfy.js"></script>
</body>
</html>