mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
47 lines
1.1 KiB
HTML
47 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<div id="playlistPage" data-role="page" class="page libraryPage" data-theme="a">
|
|
|
|
<div data-role="content">
|
|
|
|
<table id="playlistTable" style="margin: auto; width: 90%;">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>Name</th>
|
|
<th>Album</th>
|
|
<th>Time</th>
|
|
<th>Rating</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="5"></td>
|
|
</tr>
|
|
</tfoot>
|
|
<tbody id="queueTable"></tbody>
|
|
</table>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<!-- temp styling -->
|
|
<style>
|
|
#playlistTable {
|
|
width: 80%;
|
|
margin: auto;
|
|
}
|
|
|
|
#playlistTable th, #playlistTable td {
|
|
padding: 4px 10px;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html>
|