-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (51 loc) · 2.1 KB
/
Copy pathindex.html
File metadata and controls
57 lines (51 loc) · 2.1 KB
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
---
title: GameDB
layout: page
full-width: true
after-content:
- donate.html
- support.html
# TODO: Add `cover-img` (supports multiple)
ext-css:
- href: https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200
ext-js:
- https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js
- https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2024.921.191855/dist/levenshtein-distance.js
- https://cdn.jsdelivr.net/npm/@lizardbyte/shared-web@2024.921.191855/dist/ranking-sorter.js
js:
- /GameDB/assets/js/item_loader.js
---
<div class="container px-auto my-5">
<div class="col-lg-12 mx-auto" id="db-container" style="min-width: 335px">
<!-- Search section-->
<section class="py-5 offset-anchor" id="Search">
<div class="container mb-5">
<form id="searchForm">
<div class="form-group d-flex">
<div class="col-3 me-3">
<select class="form-select rounded-0" aria-label="Search Type" id="search_type">
</select>
</div>
<div class="col-6 me-3">
<input type="text" class="form-control rounded-0" placeholder="Search" id="search_term">
</div>
<button type="button" class="btn btn-warning ml-3 rounded-0" onclick="run_search()">
<i class="fa-fw fas fa-search"></i>Search</button>
</div>
</form>
</div>
<div id="search-container"></div>
</section>
<!-- Platforms section-->
<section class="py-5 offset-anchor" id="Platforms">
<div class="row gx-5 justify-content-center">
<div class="col-lg-8 col-xl-6">
<div class="text-center">
<h2 class="fw-bolder">Platforms</h2>
</div>
</div>
</div>
<div class="row gx-5" id="platforms-container"></div>
</section>
</div>
</div>