mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
53 lines
1.8 KiB
HTML
53 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Media Browser</title>
|
|
</head>
|
|
<body>
|
|
<div id="musicRecommendedPage" data-role="page" class="page libraryPage" data-theme="b" data-view="music">
|
|
<div class="libraryViewNav">
|
|
<a href="musicrecommended.html" class="ui-btn-active">Suggested</a>
|
|
<a href="songs.html">Songs</a>
|
|
<a href="musicalbums.html">Albums</a>
|
|
<a href="musicalbumartists.html">Album Artists</a>
|
|
<a href="musicartists.html">Artists</a>
|
|
<a href="musicgenres.html">Genres</a>
|
|
<a href="musicvideos.html">Music Videos</a>
|
|
</div>
|
|
<div data-role="content">
|
|
<table class="ehsContent">
|
|
<tr>
|
|
<td>
|
|
<h1 class="listHeader">Latest Albums</h1>
|
|
|
|
<div id="recentlyAddedAlbums">
|
|
</div>
|
|
<br />
|
|
<h1 class="listHeader">Latest Songs</h1>
|
|
|
|
<div id="recentlyAddedSongs">
|
|
</div>
|
|
|
|
<div id="recentlyPlayed" style="display: none;">
|
|
<br />
|
|
<h1 class="listHeader">Recently Played</h1>
|
|
|
|
<div id="recentlyPlayedSongs">
|
|
</div>
|
|
</div>
|
|
|
|
<div id="topPlayed" style="display: none;">
|
|
<br />
|
|
<h1 class="listHeader">Frequently Played</h1>
|
|
|
|
<div id="topPlayedSongs">
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|