-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
187 lines (185 loc) · 5.29 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>Spotify</title>
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/estilo.css">
</head>
<body>
<header class="header relative border-bottom">
<div class="logo">
<div class="wrap center-block">
<figure class="image isotipo float-left">
<img src="img/logo.png" alt="">
</figure>
<div class="user float-right">
<figure class="avatar round float-left">
<img src="img/avatares/josue.jpg"
width="38px" height="38px"
alt="@Josueechandiaasto">
</figure>
<span class="float-left user-name">
@Josueechandiaasto
</span>
</div>
<div class="search float-right">
<form action="" class="relative">
<span class="icon-search form-icon left" id="search"></span>
<input type="text" placeholder="@Josueechandiaasto" class="input">
<span class="form-icon close-icon right">x</span>
</form>
</div>
</div>
</div>
<a href="" class="button-menu icon-menu"></a>
<nav class="menu">
<ul class="list wrap center-block">
<li class="item"><a href="">
Top Hits</a></li>
<li class="item"><a href="">
Profile</a></li>
<li class="item"><a href="">
Settings</a></li>
<li class="item"><a href="">Playlits</a></li>
</ul>
</nav>
<div class="title">
<span>
Top Hits
</span>
</div>
</header>
<section class="playing small medium large">
<div class="music">
<figure class="image relative">
<img src="img/songs/tst-playing.jpg" width="320px" height="320px"alt="Creere Tercer Cielo">
<div class="actions padding right-text">
<a href="" class="action icon-add"></a>
<a href="" class="action icon-love"></a>
<a href="" class="action icon-share"></a>
</div>
</figure>
<div class="padding">
<div class="progress relative">
<span class="min">0:45</span>
<div class="total">
<div class="state relative">
<div class="circulo">
</div>
</div>
</div>
<span class="max">4:05</span>
</div>
<div class="description center-text border-bottom">
<p class="name">
Creere
</p>
<p class="autor">
Tercer Cielo
</p>
</div>
<div class="play center-text padding-tb">
<a href="" class="action gray icon-prev" id="prev"></a>
<a href="" class="action gray icon-play" id="play"></a>
<a href="" class="action gray icon-next" id="next"></a>
<a href="" class="action gray icon-random"></a>
<a href="" class="action gray icon-vol" id="vol"></a>
</div>
</div>
</div>
<div class="playlist float-right">
<p class="name">
Esperare
</p>
<p class="autor">
Jesus Adrian Romero
</p>
<ul class="list">
<li class="item border-bottom">
<span>
Josue Manuel Echandia Asto
</span>
<span class="float-right">
<a href="" class="action icon-add gray"></a>
<a href="" class="action icon-love gray"></a>
<a href="" class="action icon-share gray"></a>
</span>
</li>
<li class="item border-bottom">
<span>
Josue Manuel Echandia Asto
</span>
<span class="float-right">
<a href="" class="action icon-add gray"></a>
<a href="" class="action icon-love gray"></a>
<a href="" class="action icon-share gray"></a>
</span>
</li>
<li class="item border-bottom">
<span>
Josue Manuel Echandia Asto
</span>
<span class="float-right">
<a href="" class="action icon-add gray"></a>
<a href="" class="action icon-love gray"></a>
<a href="" class="action icon-share gray"></a>
</span>
</li>
<li class="item border-bottom">
<span>
Josue Manuel Echandia Asto
</span>
<span class="float-right">
<a href="" class="action icon-add gray"></a>
<a href="" class="action icon-love gray"></a>
<a href="" class="action icon-share gray"></a>
</span>
</li>
<li class="item border-bottom">
<span>
Josue Manuel Echandia Asto
</span>
<span class="float-right">
<a href="" class="action icon-add gray"></a>
<a href="" class="action icon-love gray"></a>
<a href="" class="action icon-share gray"></a>
</span>
</li>
<li class="item border-bottom">
<span>
Josue Manuel Echandia Asto
</span>
<span class="float-right">
<a href="" class="action icon-add gray"></a>
<a href="" class="action icon-love gray"></a>
<a href="" class="action icon-share gray"></a>
</span>
</li>
</ul>
</div>
</section>
<section class="container" id="list">
<script type="html/x-handlebars" id="song-tmpl">
{{#each songs}}
<article class="song" data-id="{{@index}}">
<figure class="image">
<img src="{{img}}" width="128" height="128" title="{{artist}}">
</figure>
<p class="name">
{{name}}
</p>
<p class="autor">
{{artist}}
</p>
</article>
{{/each}}
</script>
</section>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="js/lib/handlebars.js"></script>
<script src="js/lib/observable.js"></script>
<script src="js/player-mvc.js"></script>
</body>
</html>