forked from possan/webapi-player-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02.html
More file actions
65 lines (60 loc) · 2.1 KB
/
02.html
File metadata and controls
65 lines (60 loc) · 2.1 KB
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
<html ng-app="PlayerApp">
<head>
<title>Pick a Genre | Welcome to Mix-Up</title>
<link rel="stylesheet" href="style.css" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,700' rel='stylesheet' type='text/css'>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<script src="app.js"></script>
<script src="services/auth.js"></script>
<script src="services/api.js"></script>
<script src="services/playback.js"></script>
<script src="services/playqueue.js"></script>
<script src="directives/playlistcover.js"></script>
<script src="directives/responsivecover.js"></script>
<script src="directives/contextmenu.js"></script>
<script src="directives/focusme.js"></script>
<script src="filters/displaytime.js"></script>
<script src="filters/timeago.js"></script>
<script src="controllers/player.js"></script>
<script src="controllers/login.js"></script>
<script src="controllers/playlist.js"></script>
<script src="controllers/home.js"></script>
<script src="controllers/artist.js"></script>
<script src="controllers/album.js"></script>
<script src="controllers/user.js"></script>
<script src="controllers/usertracks.js"></script>
<script src="controllers/playqueue.js"></script>
<script src="controllers/searchresults.js"></script>
<script src="controllers/browse.js"></script>
<script src="controllers/browsecategory.js"></script>
</head>
<body>
<h1 class="center">
Mix-Up
</h1>
<div class="center">
<p>
Here are some genres based on the music you listen to
</p>
<h2 class="center">
Pick a genre
</h2>
<div class="center">
<a href="03.html" class="button big green">Rock</a>
</div>
<div class="center">
<a href="03.html" class="button big green">R&B</a>
</div>
<div class="center">
<a href="03.html" class="button big green">Classical</a>
</div>
<div class="center">
<a href="03.html" class="button big green">Techno</a>
</div>
<div class="center">
<a href="03.html" class="button big green">Funk</a>
</div>
</div>
</body>
</html>