mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
80 lines
3.9 KiB
HTML
80 lines
3.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Media Browser</title>
|
|
</head>
|
|
<body>
|
|
<div id="gamesystemsPage" data-role="page" class="page libraryPage" data-theme="b" data-view="games">
|
|
<div class="libraryViewNav">
|
|
<a href="gamesrecommended.html">Suggested</a>
|
|
<a href="games.html">Games</a>
|
|
<a href="gamesystems.html" class="ui-btn-active">Game Systems</a>
|
|
<a href="gamegenres.html">Genres</a>
|
|
<a href="gamestudios.html">Studios</a>
|
|
</div>
|
|
<div data-role="content">
|
|
<div class="viewSettings">
|
|
<div class="viewControls">
|
|
<button data-mini="true" data-icon="sort" data-inline="true" onclick="$('#sortPanel', $(this).parents('.page')).panel( 'toggle' );">Sort</button>
|
|
<button data-mini="true" data-icon="filter" data-inline="true" onclick="$('#filterPanel', $(this).parents('.page')).panel( 'toggle' );">Filter</button>
|
|
</div>
|
|
<div class="listTopPaging">
|
|
</div>
|
|
<div class="viewSummary"></div>
|
|
</div>
|
|
<div id="items" class="itemsContainer"></div>
|
|
</div>
|
|
<div data-role="panel" id="sortPanel" data-position="right" data-display="overlay" data-theme="a" data-position-fixed="true">
|
|
|
|
<form>
|
|
<div id="sortpanel">
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
<h3>Sort By:</h3>
|
|
</legend>
|
|
|
|
<input class="radioSortBy defaultSort" type="radio" name="radioSortBy" id="radioSortName" value="on" checked="checked" data-sortby="SortName">
|
|
<label for="radioSortName">Name</label>
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioCommunityRating" value="off" data-sortby="CommunityRating">
|
|
<label for="radioCommunityRating">Community Rating</label>
|
|
|
|
<input class="radioSortBy" type="radio" name="radioSortBy" id="radioDateCreated" value="off" data-sortby="DateCreated">
|
|
<label for="radioDateCreated">Date Added</label>
|
|
</fieldset>
|
|
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
<h3>Sort Order:</h3>
|
|
</legend>
|
|
|
|
<input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioAscending" value="on" checked="checked" data-sortorder="Ascending">
|
|
<label for="radioAscending">Ascending</label>
|
|
|
|
<input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioDescending" value="off" data-sortorder="Descending">
|
|
<label for="radioDescending">Descending</label>
|
|
</fieldset>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div data-role="panel" id="filterPanel" data-position="right" data-display="overlay" data-theme="a" data-position-fixed="true">
|
|
<form>
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
<h3>Filters:</h3>
|
|
</legend>
|
|
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-filter="IsFavorite">
|
|
<label for="chkIsFavorite">Favorite</label>
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-filter="Likes">
|
|
<label for="chkLikes">Likes</label>
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-filter="Dislikes">
|
|
<label for="chkDislikes">Dislikes</label>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|