mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
51 lines
2.2 KiB
HTML
51 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Media Browser</title>
|
|
</head>
|
|
<body>
|
|
<div id="favoriteTvPage" data-role="page" class="page libraryPage" data-theme="a" data-view="tvshows">
|
|
<div class="libraryViewNav">
|
|
<a href="tvrecommended.html">Suggested</a>
|
|
<a href="tvnextup.html">Next up</a>
|
|
<a href="tvshows.html">Shows</a>
|
|
<a href="tvgenres.html">Genres</a>
|
|
<a href="tvpeople.html">Actors</a>
|
|
<a href="tvstudios.html">Networks</a>
|
|
<a href="favoritetv.html" class="ui-btn-active">Favorites</a>
|
|
</div>
|
|
<div class="alphabetPicker">
|
|
</div>
|
|
<div data-role="content">
|
|
<div style="text-align: center;">
|
|
<div data-role="controlgroup" data-type="horizontal" class="favoriteTypes" data-mini="true">
|
|
<a href="#" data-role="button" class="btnFavoriteType btnFavoriteSeries ui-btn-active">Series</a>
|
|
<a href="#" data-role="button" class="btnFavoriteType btnFavoriteSeasons">Seasons</a>
|
|
<a href="#" data-role="button" class="btnFavoriteType btnFavoriteEpisodes">Episodes</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="viewSettings">
|
|
<div class="viewControls">
|
|
<button data-mini="true" data-icon="filter" data-inline="true" onclick="$('#filterPanel', $.mobile.activePage).panel( 'toggle' );">Filter</button>
|
|
</div>
|
|
<div class="listTopPaging">
|
|
</div>
|
|
</div>
|
|
<div id="items" class="itemsContainer"></div>
|
|
</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 type="checkbox" name="chkIncludeLikes" id="chkIncludeLikes" data-theme="c" data-mini="true">
|
|
<label for="chkIncludeLikes">Includes likes</label>
|
|
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|