-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.07 KB
/
index.html
File metadata and controls
52 lines (48 loc) · 1.07 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
---
layout: home
datatable: true
---
<div class="homepage">
<div class="homepage-header">
<h1><img width="50px" src="/img/rock-music.png" />Music Lab</h1>
</div>
<div class="homepage-sidebar">
<div class="homepage-playlist">
<h3>Playlist</h3>
<ul></ul>
<em>Empty</em>
<hr />
<div class="homepage-playlist-controls">
<a href="#" class="clear"><i class="fa fa-trash"></i>Clear</a>
<div class="divider"></div>
<a href="#" class="add-list"><i class=""></i>Add from list</a>
<div class="divider"></div>
<a href="#" class="play"><i class="fa-solid fa-play"></i>Start</a>
</div>
</div>
<div class="homepage-search"></div>
</div>
<div class="homepage-songs">
<table class="display nowrap">
<thead>
<tr>
<th class="artist">Artist</th>
<th class="title">Title</th>
<th class="tags">Tags</th>
<th class="capo">Capo</th>
<th class="tuning">Tuning</th>
<th class="actions"></th>
</tr>
</thead>
</table>
</div>
</div>
<script>
/**
*
*/
$(() => {
initPlaylist();
initSongList();
});
</script>