jellyfin-web/dashboard-ui/playlist.html

47 lines
1.1 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
2013-04-18 21:27:16 -07:00
<title></title>
</head>
<body>
<div id="playlistPage" data-role="page" class="page libraryPage" data-theme="a">
2013-04-18 21:27:16 -07:00
<div data-role="content">
<table id="playlistTable" style="margin: auto; width: 90%;">
2013-04-18 21:27:16 -07:00
<thead>
<tr>
<th></th>
<th>Name</th>
2013-05-02 20:48:19 -07:00
<th>Album</th>
2013-04-18 21:27:16 -07:00
<th>Time</th>
<th>Rating</th>
<th></th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="5"></td>
</tr>
</tfoot>
<tbody id="queueTable"></tbody>
</table>
2013-04-18 21:27:16 -07:00
</div>
</div>
2013-04-17 18:32:38 -07:00
2013-04-18 21:27:16 -07:00
<!-- temp styling -->
<style>
#playlistTable {
width: 80%;
margin: auto;
}
#playlistTable th, #playlistTable td {
padding: 4px 10px;
}
</style>
</body>
</html>