mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
47 lines
1.7 KiB
HTML
47 lines
1.7 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>
|
|
|
|
<div class="ehsContent">
|
|
<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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|