mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
52 lines
1.9 KiB
HTML
52 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Media Browser</title>
|
|
</head>
|
|
<body>
|
|
<div id="musicRecommendedPage" data-role="page" class="page libraryPage noLogoPage" data-theme="a">
|
|
<h1 class="libraryPageHeader"><a href="index.html" class="imageLink">
|
|
<img src="css/images/mblogoicon.png"></a>Music</h1>
|
|
<div data-role="content">
|
|
<div data-role="controlgroup" data-type="horizontal" class="libraryViewNav" data-mini="true">
|
|
<a href="musicrecommended.html" data-role="button" class="ui-btn-active">Suggested</a>
|
|
<a href="songs.html" data-role="button">Songs</a>
|
|
<a href="musicalbums.html" data-role="button">Albums</a>
|
|
<a href="musicartists.html" data-role="button">Artists</a>
|
|
<a href="musicgenres.html" data-role="button">Genres</a>
|
|
</div>
|
|
|
|
<table class="ehsContent">
|
|
<tr>
|
|
<td>
|
|
<h1 class="listHeader firstListHeader">Latest Albums</h1>
|
|
|
|
<div id="recentlyAddedAlbums">
|
|
</div>
|
|
|
|
<h1 class="listHeader">Latest Songs</h1>
|
|
|
|
<div id="recentlyAddedSongs">
|
|
</div>
|
|
|
|
<div id="recentlyPlayed" style="display: none;">
|
|
<h1 class="listHeader">Recently Played</h1>
|
|
|
|
<div id="recentlyPlayedSongs">
|
|
</div>
|
|
</div>
|
|
|
|
<div id="topPlayed" style="display: none;">
|
|
<h1 class="listHeader">Most Frequently Played</h1>
|
|
|
|
<div id="topPlayedSongs">
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|