-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
83 lines (72 loc) · 4.26 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en" class="">
<head>
<meta charset="UTF-8">
<title>GBDK Showcase</title>
<link rel="stylesheet" type="text/css" href="./css/styles.css" />
<script type="text/javascript" src="./data/itch_entries.js"></script>
<script type="text/javascript" src="./data/manual_entries.js"></script>
<script type="text/javascript" src="./data/romhacking_entries.js"></script>
<script type="text/javascript" src="./js/globals.js"></script>
<script type="text/javascript" src="./js/util.js"></script>
<script type="text/javascript" src="./js/gallery.js"></script>
<script type="text/javascript" src="./js/sorting.js"></script>
<script type="text/javascript" src="./js/filters.js"></script>
<script type="text/javascript" src="./js/gallery_items.js"></script>
<link rel="icon" type="image/x-icon" href="/icon/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="./icon/gbdk_favicon_180x180.png">
<link rel="icon" type="image/png" sizes="48x48" href="./icon/gbdk_favicon_48x48.png">
<link rel="icon" type="image/png" sizes="32x32" href="./icon/gbdk_favicon_32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./icon/gbdk_favicon_16x16.png">
<meta property="og:title" content="GBDK Showcase" />
<meta property="og:description" content="A collection of GBDK/GBDK-2020 Games, Demos, Music and Programs" />
<meta property="og:image:alt" content="A collection of GBDK/GBDK-2020 Games, Demos, Music and Programs" />
<meta property="og:url" content="https://gbdk-2020.github.io/gbdk-2020-gallery/" />
<meta property="og:image" content="/gbdk-2020-gallery/social/social_preview.png" />
<meta property="og:image:width" content="1280" />
<meta property="og:image:height" content="640" />
<meta property="og:twitter:card" content="summary_large_image" />
</head>
<body>
<script>
// Try to detect mobile vs desktop to set font scaling
detectDeviceType();
</script>
<noscript>Javascript is required for viewing this gallery</noscript>
<div class="header">
<div class="topbanner">
<h1>GBDK Showcase</h1>
A collection of GBDK/GBDK-2020 Games, Demos, Music and Programs.
Also see the Made with <a href="https://github.com/Zal0/ZGB/wiki/Made-with-ZGB">ZGB</a> and <a href="https://github.com/gbdk-2020/CrossZGB/wiki/Made-with-CrossZGB">CrossZGB</a> collections of games.
<br>
<br><a href="https://github.com/gbdk-2020/gbdk-2020">GBDK-2020</a> is a cross-platform dev kit for vintage game consoles.
Entries can be submitted on <a href="https://github.com/gbdk-2020/gbdk-2020-gallery">Github</a>.
<br>Sort by: <select id="sortSelector"></select>
</div>
<div class="filter_container">
<div class="filter_multi"><select id="categoryTagsFilter"></select></div>
<div class="filter_multi"><select id="gameTypeTagsFilter"></select></div>
<div class="filter_multi"><select id="platformTagsFilter"></select></div>
<div class="filter_multi"><select id="yearReleasedFilter"></select></div>
<div class="filter_checkboxes">
<label class="checkbox_label"><input type="checkbox" id="openSourceFilter" name="openSourceFilter"> Open Source</label>
<br> <label class="checkbox_label"><input type="checkbox" id="multiPlatformFilter" name="multiPlatformFilter"> Multi-Platform</label>
</div>
<div class="filter_checkboxes">
<label class="checkbox_label"><input type="checkbox" id="cartReleaseFilter" name="cartReleaseFilter"> Cart Release</label>
<br> <label class="checkbox_label"><input type="checkbox" id="linkPlayFilter" name="linkPlayFilter"> Link Play</label>
</div>
<div class="filter_textsearch">
<input type="search" id="textSearch" name="textSearch" placeholder="search..."/>
<br>
<span id="numFoundResult" name="numFoundResult">0</span> found
<span class="filter_span_button" id="resetFilterButton" name="resetFilterButton">Reset</span>
<span class="filter_span_button" id="copyLinkFilterButton" name="copyLinkFilterButton">Copy Link</span>
</div>
</div>
</div>
<div class="gallery_container">
<div id="gallery_grid" class="gallery_grid">
</div>
</div>
</body></html>