-
Notifications
You must be signed in to change notification settings - Fork 0
/
playlist.html
51 lines (47 loc) · 1.73 KB
/
playlist.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="
default-src 'self';
script-src 'self';
media-src 'self' https://cf-media.sndcdn.com;
img-src 'self' https://*.sndcdn.com
">
<meta http-equiv="X-Content-Security-Policy" content="
default-src 'self';
script-src 'self';
media-src 'self' https://cf-media.sndcdn.com;
img-src 'self' https://*.sndcdn.com
">
<title>Плейлист - SANA Radio</title>
<link rel="stylesheet" href="./assets/css/fontawesome.css" />
<link rel="stylesheet" href="./assets/css/playlist.css" />
</head>
<body>
<header>
<button class="TrackBack" title="Вернуться к списку плейлистов"><i class="fas fa-arrow-left"></i></button>
<label for="search" class="TrackSearch"><i class="fas fa-search"></i></label>
<input type="search" id="search" name="search" class="TrackSearch" placeholder="e.g. Alan Walker, Into the night, Michel Jekson..." />
<button class="TrackAdd" title="Добавить песню"><i class="fas fa-plus"></i></button>
</header>
<main>
<table class="TrackList">
<thead>
<tr>
<th>Обложка</th>
<th title="Название песни">Название</th>
<th title="Длительность песни">Длительность</th>
<th title="Размер песни (MB)">Размер</th>
<th title="Действие с песней">Действие</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</main>
<script src="./assets/js/jquery.min.js"></script>
<script src="./assets/js/list.js"></script>
</body>
</html>