2013-04-11 15:09:08 -07:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Media Browser</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<div id="moviePeoplePage" data-role="page" class="page libraryPage" data-theme="b" data-view="movies">
|
2013-05-14 21:05:52 -07:00
|
|
|
|
|
|
|
|
|
<div class="libraryViewNav">
|
2014-03-11 19:11:01 -07:00
|
|
|
|
<a href="movieslatest.html">Latest</a>
|
2014-03-13 02:00:47 -07:00
|
|
|
|
<a href="moviesrecommended.html">Suggested</a>
|
2013-05-14 21:05:52 -07:00
|
|
|
|
<a href="movies.html">Movies</a>
|
|
|
|
|
<a href="movietrailers.html">Trailers</a>
|
|
|
|
|
<a href="moviegenres.html">Genres</a>
|
|
|
|
|
<a href="moviepeople.html" class="ui-btn-active">People</a>
|
|
|
|
|
<a href="moviestudios.html">Studios</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
2013-05-16 13:46:18 -07:00
|
|
|
|
<div class="alphabetPicker">
|
|
|
|
|
</div>
|
2013-04-11 15:09:08 -07:00
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div class="viewSettings">
|
2014-03-13 19:05:33 -07:00
|
|
|
|
<div class="viewControls" data-role="controlgroup" data-type="horizontal">
|
|
|
|
|
<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-04-11 15:09:08 -07:00
|
|
|
|
</div>
|
2013-04-23 16:21:49 -07:00
|
|
|
|
<div id="items" class="itemsContainer"></div>
|
2013-04-11 15:09:08 -07:00
|
|
|
|
</div>
|
2014-03-18 21:59:45 -07:00
|
|
|
|
<div data-role="panel" id="filterPanel" data-position="right" data-display="overlay" data-position-fixed="true">
|
2013-04-11 20:50:47 -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-11 20:50:47 -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-11 20:50:47 -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-11 20:50:47 -07:00
|
|
|
|
<label for="chkDislikes">Dislikes</label>
|
|
|
|
|
</fieldset>
|
2013-04-13 16:43:41 -07:00
|
|
|
|
<fieldset data-role="controlgroup">
|
|
|
|
|
<legend>
|
|
|
|
|
<strong>Person Types:</strong>
|
|
|
|
|
</legend>
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkPersonTypeFilter" type="checkbox" name="chkActor" id="chkActor" data-filter="Actor" data-mini="true">
|
2013-04-13 16:43:41 -07:00
|
|
|
|
<label for="chkActor">Actors</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkPersonTypeFilter" type="checkbox" name="chkDirector" id="chkDirector" data-filter="Director" data-mini="true">
|
2013-04-13 16:43:41 -07:00
|
|
|
|
<label for="chkDirector">Directors</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkPersonTypeFilter" type="checkbox" name="chkProducer" id="chkProducer" data-filter="Producer" data-mini="true">
|
2013-04-13 16:43:41 -07:00
|
|
|
|
<label for="chkProducer">Producers</label>
|
|
|
|
|
|
2013-12-24 11:37:29 -07:00
|
|
|
|
<input class="chkPersonTypeFilter" type="checkbox" name="chkWriter" id="chkWriter" data-filter="Writer" data-mini="true">
|
2013-04-13 16:43:41 -07:00
|
|
|
|
<label for="chkWriter">Writers</label>
|
|
|
|
|
</fieldset>
|
2013-04-11 20:50:47 -07:00
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
2013-04-11 15:09:08 -07:00
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|