jellyfin-web/dashboard-ui/musicrecommended.html

50 lines
1.6 KiB
HTML
Raw Normal View History

2013-03-31 22:44:37 -07:00
<!DOCTYPE html>
<html>
<head>
<title>Media Browser</title>
</head>
<body>
<div id="musicRecommendedPage" data-role="page" class="page libraryPage" data-theme="a" 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="musicartists.html">Artists</a>
<a href="musicgenres.html">Genres</a>
<a href="musicvideos.html">Music Videos</a>
</div>
2013-03-31 22:44:37 -07:00
<div data-role="content">
2013-05-03 13:50:13 -07:00
<table class="ehsContent">
<tr>
<td>
<h1 class="listHeader firstListHeader">Latest Albums</h1>
2013-04-25 16:28:01 -07:00
2013-05-03 13:50:13 -07:00
<div id="recentlyAddedAlbums">
</div>
2013-04-25 16:28:01 -07:00
2013-05-03 13:50:13 -07:00
<h1 class="listHeader">Latest Songs</h1>
2013-04-25 16:28:01 -07:00
2013-05-03 13:50:13 -07:00
<div id="recentlyAddedSongs">
</div>
2013-04-25 17:52:55 -07:00
2013-05-03 13:50:13 -07:00
<div id="recentlyPlayed" style="display: none;">
<h1 class="listHeader">Recently Played</h1>
2013-04-25 17:52:55 -07:00
2013-05-03 13:50:13 -07:00
<div id="recentlyPlayedSongs">
</div>
</div>
2013-04-25 17:52:55 -07:00
2013-05-03 13:50:13 -07:00
<div id="topPlayed" style="display: none;">
<h1 class="listHeader">Most Frequently Played</h1>
2013-04-25 17:52:55 -07:00
2013-05-03 13:50:13 -07:00
<div id="topPlayedSongs">
</div>
</div>
</td>
</tr>
</table>
2013-03-31 22:44:37 -07:00
</div>
</div>
</body>
</html>