jellyfin-web/dashboard-ui/gamegenres.html

53 lines
2.3 KiB
HTML
Raw Normal View History

2013-04-14 20:37:07 -07:00
<!DOCTYPE html>
<html>
<head>
2014-04-01 15:23:07 -07:00
<title>${TitleMediaBrowser}</title>
2013-04-14 20:37:07 -07:00
</head>
<body>
2013-12-24 11:37:29 -07:00
<div id="gameGenresPage" data-role="page" class="page libraryPage listPage" data-theme="b" data-view="games">
<div class="libraryViewNav">
2014-04-01 15:23:07 -07:00
<a href="gamesrecommended.html">${TabSuggested}</a>
2014-04-05 08:02:50 -07:00
<a href="games.html">${TabGames}</a>
<a href="gamesystems.html">Game Systems</a>
2014-04-01 15:23:07 -07:00
<a href="gamegenres.html" class="ui-btn-active">${TabGenres}</a>
2014-04-03 15:50:04 -07:00
<a href="gamestudios.html">${TabStudios}</a>
</div>
2013-04-18 21:27:16 -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">
2014-04-02 14:55:19 -07:00
<button data-mini="true" data-icon="filter" data-inline="true" data-iconpos="notext" title="${ButtonFilter}" onclick="$('#filterPanel', $(this).parents('.page')).panel( 'toggle' );">${ButtonFilter}</button>
2014-03-13 19:05:33 -07:00
</div>
2014-03-17 07:48:16 -07:00
<div class="listTopPaging">
</div>
2013-04-18 21:27:16 -07:00
</div>
2013-04-23 16:21:49 -07:00
<div id="items" class="itemsContainer"></div>
2013-04-18 21:27:16 -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-18 21:27:16 -07:00
<form>
<fieldset data-role="controlgroup">
<legend>
2014-04-02 14:55:19 -07:00
<strong>${HeaderFilters}</strong>
2013-04-18 21:27:16 -07:00
</legend>
2013-12-24 11:37:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-filter="IsFavorite" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="chkIsFavorite">${OptionFavorite}</label>
2013-04-14 20:37:07 -07:00
2013-12-24 11:37:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-filter="Likes" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="chkLikes">${OptionLikes}</label>
2013-04-14 20:37:07 -07:00
2013-12-24 11:37:29 -07:00
<input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-filter="Dislikes" data-mini="true">
2014-04-02 14:55:19 -07:00
<label for="chkDislikes">${OptionDislikes}</label>
2013-04-18 21:27:16 -07:00
</fieldset>
2013-04-14 20:37:07 -07:00
2013-04-18 21:27:16 -07:00
<fieldset data-role="controlgroup">
<legend>
<strong>Game System:</strong>
</legend>
2013-04-14 20:37:07 -07:00
2013-04-18 21:27:16 -07:00
</fieldset>
</form>
</div>
2013-04-14 20:37:07 -07:00
2013-04-18 21:27:16 -07:00
</div>
2013-04-14 20:37:07 -07:00
</body>
</html>