mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
61 lines
2.5 KiB
HTML
61 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>${TitleMediaBrowser}</title>
|
|
</head>
|
|
<body>
|
|
<div id="gameGenresPage" data-role="page" class="page libraryPage listPage" data-theme="b">
|
|
<div class="libraryViewNav scopedLibraryViewNav">
|
|
<a href="gamesrecommended.html">${TabSuggested}</a>
|
|
<a href="games.html">${TabGames}</a>
|
|
<a href="gamesystems.html">${TabGameSystems}</a>
|
|
<a href="#" class="ui-btn-active">${TabGenres}</a>
|
|
<a href="gamestudios.html">${TabStudios}</a>
|
|
</div>
|
|
<div data-role="content">
|
|
<div class="viewSettings">
|
|
<div class="listTopPaging">
|
|
</div>
|
|
</div>
|
|
<div id="items" class="itemsContainer"></div>
|
|
</div>
|
|
|
|
<div data-role="panel" class="viewPanel" data-theme="a" data-position="right" data-display="overlay" data-position-fixed="true">
|
|
<form>
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" data-mini="true" class="viewPanelTabs">
|
|
<a href="#" data-role="button" class="viewTabButton" data-tab="tabView">${TabView}</a>
|
|
<a href="#" data-role="button" class="viewTabButton" data-tab="tabFilter">${TabFilter}</a>
|
|
</div>
|
|
|
|
<div class="tabView viewTab">
|
|
|
|
<div>
|
|
<label for="selectPageSize">${LabelPageSize}</label>
|
|
<select id="selectPageSize"></select>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="tabFilter viewTab">
|
|
<fieldset data-role="controlgroup">
|
|
<legend>
|
|
${HeaderFilters}
|
|
</legend>
|
|
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-filter="IsFavorite" data-mini="true">
|
|
<label for="chkIsFavorite">${OptionFavorite}</label>
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-filter="Likes" data-mini="true">
|
|
<label for="chkLikes">${OptionLikes}</label>
|
|
|
|
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-filter="Dislikes" data-mini="true">
|
|
<label for="chkDislikes">${OptionDislikes}</label>
|
|
</fieldset>
|
|
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|