mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 02:48:19 -07:00
87 lines
4.7 KiB
HTML
87 lines
4.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Media Browser</title>
|
|
</head>
|
|
<body>
|
|
<div id="moviePeoplePage" data-role="page" class="page libraryPage noLogoPage" data-theme="a">
|
|
<h1 class="libraryPageHeader"><a href="index.html" class="imageLink">
|
|
<img src="css/images/home.png"></a>Movies</h1>
|
|
<div data-role="content">
|
|
<div data-role="controlgroup" data-type="horizontal" class="libraryViewNav" data-mini="true">
|
|
<a href="moviesrecommended.html" data-role="button">Suggested</a>
|
|
<a href="movies.html" data-role="button">Movies</a>
|
|
<a href="boxsets.html" data-role="button">Box Sets</a>
|
|
<a href="moviegenres.html" data-role="button">Genres</a>
|
|
<a href="moviepeople.html" data-role="button" class="ui-btn-active">People</a>
|
|
<a href="moviestudios.html" data-role="button">Studios</a>
|
|
</div>
|
|
<div class="viewSettings">
|
|
<button data-mini="true" data-icon="sort" data-inline="true" onclick="$('#sortPanel', $.mobile.activePage).panel( 'toggle' );">Sort</button>
|
|
<button data-mini="true" data-icon="filter" data-inline="true" onclick="$('#filterPanel', $.mobile.activePage).panel( 'toggle' );">Filter</button>
|
|
</div>
|
|
<div id="items"></div>
|
|
</div>
|
|
<div data-role="panel" id="sortPanel" data-position="right" data-display="overlay" data-theme="b" data-position-fixed="true">
|
|
|
|
<form>
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
<strong>Sort By:</strong>
|
|
</legend>
|
|
|
|
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioSortName" value="on" checked="checked" data-sortby="SortName" data-mini="true">
|
|
<label for="radioSortName">Name</label>
|
|
</fieldset>
|
|
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
<strong>Sort Order:</strong>
|
|
</legend>
|
|
|
|
<input class="radioSortOrder" data-theme="c" type="radio" name="radioSortOrder" id="radioAscending" value="on" checked="checked" data-sortorder="Ascending" data-mini="true">
|
|
<label for="radioAscending">Ascending</label>
|
|
|
|
<input class="radioSortOrder" data-theme="c" type="radio" name="radioSortOrder" id="radioDescending" value="off" data-sortorder="Descending" data-mini="true">
|
|
<label for="radioDescending">Descending</label>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
<div data-role="panel" id="filterPanel" data-position="right" data-display="overlay" data-theme="b" data-position-fixed="true">
|
|
<form>
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
<strong>Filters:</strong>
|
|
</legend>
|
|
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-theme="c" data-filter="IsFavorite" data-mini="true">
|
|
<label for="chkIsFavorite">Favorite</label>
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-theme="c" data-filter="Likes" data-mini="true">
|
|
<label for="chkLikes">Likes</label>
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-theme="c" data-filter="Dislikes" data-mini="true">
|
|
<label for="chkDislikes">Dislikes</label>
|
|
</fieldset>
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
<strong>Person Types:</strong>
|
|
</legend>
|
|
<input class="chkPersonTypeFilter" type="checkbox" name="chkActor" id="chkActor" data-theme="c" data-filter="Actor" data-mini="true">
|
|
<label for="chkActor">Actors</label>
|
|
|
|
<input class="chkPersonTypeFilter" type="checkbox" name="chkDirector" id="chkDirector" data-theme="c" data-filter="Director" data-mini="true">
|
|
<label for="chkDirector">Directors</label>
|
|
|
|
<input class="chkPersonTypeFilter" type="checkbox" name="chkProducer" id="chkProducer" data-theme="c" data-filter="Producer" data-mini="true">
|
|
<label for="chkProducer">Producers</label>
|
|
|
|
<input class="chkPersonTypeFilter" type="checkbox" name="chkWriter" id="chkWriter" data-theme="c" data-filter="Writer" data-mini="true">
|
|
<label for="chkWriter">Writers</label>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|