2013-04-21 21:38:03 -07:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Media Browser</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<div id="musicAlbumsPage" data-role="page" class="page libraryPage" data-theme="b" data-view="music">
|
2013-05-14 21:05:52 -07:00
|
|
|
|
<div class="libraryViewNav">
|
|
|
|
|
<a href="musicrecommended.html">Suggested</a>
|
|
|
|
|
<a href="songs.html">Songs</a>
|
|
|
|
|
<a href="musicalbums.html" class="ui-btn-active">Albums</a>
|
2013-11-21 13:48:26 -07:00
|
|
|
|
<a href="musicalbumartists.html">Album Artists</a>
|
2013-05-14 21:05:52 -07:00
|
|
|
|
<a href="musicartists.html">Artists</a>
|
|
|
|
|
<a href="musicgenres.html">Genres</a>
|
2013-05-27 18:59:26 -07:00
|
|
|
|
<a href="musicvideos.html">Music Videos</a>
|
2013-05-14 21:05:52 -07:00
|
|
|
|
</div>
|
2013-05-16 12:00:42 -07:00
|
|
|
|
<div class="alphabetPicker">
|
|
|
|
|
</div>
|
2013-04-21 21:38:03 -07:00
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div class="viewSettings">
|
|
|
|
|
<div class="viewControls">
|
2013-05-15 05:05:07 -07:00
|
|
|
|
<div style="display: inline-block;">
|
|
|
|
|
<select data-mini="true" data-inline="true" id="selectView" name="selectView">
|
|
|
|
|
<option value="Poster">Poster</option>
|
|
|
|
|
<option value="Timeline">Timeline</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
2013-04-21 21:38:03 -07:00
|
|
|
|
</div>
|
2014-03-13 19:05:33 -07:00
|
|
|
|
<div class="viewControls" data-role="controlgroup" data-type="horizontal">
|
|
|
|
|
<button data-mini="true" data-icon="sort" data-inline="true" data-iconpos="notext" title="Sort" onclick="$('#sortPanel', $(this).parents('.page')).panel( 'toggle' );">Sort</button>
|
|
|
|
|
<button data-mini="true" data-icon="filter" data-inline="true" data-iconpos="notext" title="Filter" onclick="$('#filterPanel', $(this).parents('.page')).panel( 'toggle' );">Filter</button>
|
|
|
|
|
</div>
|
2014-03-17 07:48:16 -07:00
|
|
|
|
<div class="listTopPaging">
|
|
|
|
|
</div>
|
2013-10-17 09:24:35 -07:00
|
|
|
|
<div class="viewSummary"></div>
|
2013-04-21 21:38:03 -07:00
|
|
|
|
</div>
|
2013-04-23 16:21:49 -07:00
|
|
|
|
<div id="items" class="itemsContainer"></div>
|
2013-04-21 21:38:03 -07:00
|
|
|
|
</div>
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<div data-role="panel" id="sortPanel" data-position="right" data-display="overlay" data-theme="a" data-position-fixed="true">
|
2013-04-21 21:38:03 -07:00
|
|
|
|
|
|
|
|
|
<form>
|
|
|
|
|
<fieldset data-role="controlgroup">
|
|
|
|
|
<legend>
|
|
|
|
|
<strong>Sort By:</strong>
|
|
|
|
|
</legend>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioSortName" value="on" checked="checked" data-sortby="SortName" data-mini="true">
|
2013-04-21 21:38:03 -07:00
|
|
|
|
<label for="radioSortName">Name</label>
|
2013-05-15 05:05:07 -07:00
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy defaultSort" type="radio" name="radioSortBy" id="radioAlbumArtist" value="off" data-sortby="AlbumArtist,SortName" data-mini="true">
|
2013-09-03 07:33:40 -07:00
|
|
|
|
<label for="radioAlbumArtist">Album Artist</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioCommunityRating" value="off" data-sortby="CommunityRating,SortName" data-mini="true">
|
2013-05-15 05:05:07 -07:00
|
|
|
|
<label for="radioCommunityRating">Community Rating</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioDateCreated" value="off" data-sortby="DateCreated" data-mini="true">
|
2013-05-15 05:05:07 -07:00
|
|
|
|
<label for="radioDateCreated">Date Added</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioPremiereDate" value="off" data-sortby="ProductionYear,PremiereDate" data-mini="true">
|
2013-09-22 09:49:55 -07:00
|
|
|
|
<label for="radioPremiereDate">Release Date</label>
|
2013-05-15 05:05:07 -07:00
|
|
|
|
|
2013-04-21 21:38:03 -07:00
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
|
|
<fieldset data-role="controlgroup">
|
|
|
|
|
<legend>
|
|
|
|
|
<strong>Sort Order:</strong>
|
|
|
|
|
</legend>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioAscending" value="on" checked="checked" data-sortorder="Ascending" data-mini="true">
|
2013-04-21 21:38:03 -07:00
|
|
|
|
<label for="radioAscending">Ascending</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioDescending" value="off" data-sortorder="Descending" data-mini="true">
|
2013-04-21 21:38:03 -07:00
|
|
|
|
<label for="radioDescending">Descending</label>
|
|
|
|
|
</fieldset>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<div data-role="panel" id="filterPanel" data-position="right" data-display="overlay" data-theme="a" data-position-fixed="true">
|
2013-04-21 21:38:03 -07:00
|
|
|
|
<form>
|
|
|
|
|
<fieldset data-role="controlgroup">
|
|
|
|
|
<legend>
|
|
|
|
|
<strong>Filters:</strong>
|
|
|
|
|
</legend>
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-filter="IsFavorite" data-mini="true">
|
2013-04-21 21:38:03 -07:00
|
|
|
|
<label for="chkIsFavorite">Favorite</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-filter="Likes" data-mini="true">
|
2013-04-21 21:38:03 -07:00
|
|
|
|
<label for="chkLikes">Likes</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-filter="Dislikes" data-mini="true">
|
2013-04-21 21:38:03 -07:00
|
|
|
|
<label for="chkDislikes">Dislikes</label>
|
|
|
|
|
</fieldset>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|