|
1 |
| -<!DOCTYPE html> |
2 |
| -<html lang="en"> |
3 |
| - <head> |
4 |
| - <title>LizardByte - db</title> |
5 |
| - <meta charset="utf-8" /> |
6 |
| - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> |
7 |
| - <meta name="description" content="Video game metadata database." /> |
8 |
| - <meta name="author" content="" /> |
9 |
| - |
10 |
| - <!-- Open Graph/Twitter metadata --> |
11 |
| - <meta property="og:site_name" content="LizardByte" /> |
12 |
| - <meta property="og:title" content="LizardByte" /> |
13 |
| - <meta property="og:type" content="website" /> |
14 |
| - <meta property="og:image" content="https://app.lizardbyte.dev/assets/images/og-image.png" /> |
15 |
| - <meta property="og:url" content="https://db.lizardbyte.dev" /> |
16 |
| - <meta property="og:description" content="Video game metadata database." /> |
17 |
| - <meta property="og:locale" content="en-US" /> |
18 |
| - <meta property="twitter:card" content="summary_large_image" /> |
19 |
| - <meta property="og:twitter_site" content="@lizardbytedev" /> |
20 |
| - <meta property="og:twitter_site:id" content="@lizardbytedev" /> |
21 |
| - <meta property="og:twitter_creator" content="@lizardbytedev" /> |
22 |
| - <meta property="og:twitter_creator:id" content="@lizardbytedev" /> |
23 |
| - <meta property="twitter:image" content="https://app.lizardbyte.dev/assets/images/og-image.png" /> |
24 |
| - |
25 |
| - <!-- Favicon--> |
26 |
| - <link rel="icon" type="image/x-icon" href="https://app.lizardbyte.dev/assets/images/favicon.ico" /> |
27 |
| - <!-- FontAwesome--> |
28 |
| - <link href="https://app.lizardbyte.dev/node_modules/@fortawesome/fontawesome-free/css/all.min.css" rel="stylesheet" /> |
29 |
| - <!-- Material icons--> |
30 |
| - <link href=" https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" rel=" stylesheet" /> |
31 |
| - |
32 |
| - <!-- Bootstrap theme--> |
33 |
| - <link href="https://app.lizardbyte.dev/node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" /> |
34 |
| - <!-- Custom css--> |
35 |
| - <link href="https://app.lizardbyte.dev/css/custom.css" rel="stylesheet" /> |
36 |
| - |
37 |
| - <script src="https://app.lizardbyte.dev/node_modules/jquery/dist/jquery.min.js"></script> |
38 |
| - <script src="https://app.lizardbyte.dev/node_modules/@popperjs/core/dist/umd/popper.min.js"></script> |
39 |
| - </head> |
40 |
| - <body class="d-flex flex-column h-100 bg-dark-gray"> |
41 |
| - <main class="flex-shrink-0 overflow-hidden"> |
42 |
| - <!-- Navigation--> |
43 |
| - <nav id="nav-container"></nav> |
44 |
| - |
45 |
| - <div class="container px-auto my-5"> |
46 |
| - <div class="col-lg-12 mx-auto" id="db-container" style="min-width: 335px"> |
47 |
| - |
48 |
| - <!-- Search section--> |
49 |
| - <section class="py-5 offset-anchor" id="Search"> |
50 |
| - <div class="container mb-5"> |
51 |
| - <form id="searchForm"> |
52 |
| - <div class="form-group d-flex"> |
53 |
| - <div class="col-3 me-3"> |
54 |
| - <select class="form-select rounded-0" aria-label="Search Type" id="search_type"> |
55 |
| - </select> |
56 |
| - </div> |
57 |
| - <div class="col-6 me-3"> |
58 |
| - <input type="text" class="form-control rounded-0" placeholder="Search" id="search_term"> |
59 |
| - </div> |
60 |
| - <button type="button" class="btn btn-warning ml-3 rounded-0" onclick="run_search()"> |
61 |
| - <i class="fa-fw fas fa-search"></i>Search</button> |
62 |
| - </div> |
63 |
| - </form> |
| 1 | +--- |
| 2 | +title: GameDB |
| 3 | +layout: page |
| 4 | +full-width: true |
| 5 | +after-content: |
| 6 | +- donate.html |
| 7 | +- support.html |
| 8 | + |
| 9 | +# TODO: Add `cover-img` (supports multiple) |
| 10 | + |
| 11 | +ext-css: |
| 12 | + - href: https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL, [email protected],100..700,0..1,-50..200 |
| 13 | +ext-js: |
| 14 | +- https://cdn.jsdelivr.net/npm/ [email protected]/dist/jquery.min.js |
| 15 | +- https://cdn.jsdelivr.net/npm/@lizardbyte/ [email protected]/dist/levenshtein-distance.js |
| 16 | +- https://cdn.jsdelivr.net/npm/@lizardbyte/ [email protected]/dist/ranking-sorter.js |
| 17 | +js: |
| 18 | +- /assets/js/item_loader.js |
| 19 | +--- |
| 20 | + |
| 21 | +<div class="container px-auto my-5"> |
| 22 | + <div class="col-lg-12 mx-auto" id="db-container" style="min-width: 335px"> |
| 23 | + |
| 24 | + <!-- Search section--> |
| 25 | + <section class="py-5 offset-anchor" id="Search"> |
| 26 | + <div class="container mb-5"> |
| 27 | + <form id="searchForm"> |
| 28 | + <div class="form-group d-flex"> |
| 29 | + <div class="col-3 me-3"> |
| 30 | + <select class="form-select rounded-0" aria-label="Search Type" id="search_type"> |
| 31 | + </select> |
64 | 32 | </div>
|
65 |
| - <div id="search-container"></div> |
66 |
| - </section> |
67 |
| - |
68 |
| - <!-- Platforms section--> |
69 |
| - <section class="py-5 offset-anchor" id="Platforms"> |
70 |
| - <div class="row gx-5 justify-content-center"> |
71 |
| - <div class="col-lg-8 col-xl-6"> |
72 |
| - <div class="text-center text-white"> |
73 |
| - <h2 class="fw-bolder">Platforms</h2> |
74 |
| - </div> |
75 |
| - </div> |
| 33 | + <div class="col-6 me-3"> |
| 34 | + <input type="text" class="form-control rounded-0" placeholder="Search" id="search_term"> |
76 | 35 | </div>
|
77 |
| - <div class="row gx-5" id="platforms-container"></div> |
78 |
| - </section> |
79 |
| - |
80 |
| - </div> |
| 36 | + <button type="button" class="btn btn-warning ml-3 rounded-0" onclick="run_search()"> |
| 37 | + <i class="fa-fw fas fa-search"></i>Search</button> |
| 38 | + </div> |
| 39 | + </form> |
81 | 40 | </div>
|
82 |
| - |
83 |
| - <!-- Donate section--> |
84 |
| - <section class="offset-anchor bg-dark p-5" id="Donate"> |
85 |
| - <div class="container mb-5 shadow border-0 bg-dark-gray rounded-0 col-md-7"> |
86 |
| - <div class="d-table-row g-0 text-white"> |
87 |
| - <div class="d-table-cell px-3 align-middle text-center"> |
88 |
| - <h1> |
89 |
| - <i class="fa-fw fas fa-coins"></i> |
90 |
| - </h1> |
91 |
| - </div> |
92 |
| - <div class="col-sm-auto border-white my-3 px-3 py-2 border-start"> |
93 |
| - <div class="container"> |
94 |
| - <h4 class="card-title mb-3 fw-bolder">Donate</h4> |
95 |
| - </div> |
96 |
| - <a |
97 |
| - class="text-decoration-none" |
98 |
| - href="https://github.com/sponsors/LizardByte" |
99 |
| - target="_blank"> |
100 |
| - <img class="m-3" |
101 |
| - alt="GitHub Sponsors" |
102 |
| - src="https://img.shields.io/github/sponsors/lizardbyte?label=Github%20Sponsors&style=for-the-badge&color=green&logo=githubsponsors" |
103 |
| - > |
104 |
| - </a> |
105 |
| - <a |
106 |
| - class="text-decoration-none" |
107 |
| - href="https://www.patreon.com/LizardByte" |
108 |
| - target="_blank"> |
109 |
| - <img class="m-3" |
110 |
| - alt="Patreon" |
111 |
| - src="https://img.shields.io/badge/dynamic/json?color=green&label=Patreon&style=for-the-badge&query=patron_count&url=https%3A%2F%2Fapp.lizardbyte.dev%2Fdashboard%2Fpatreon%2FLizardByte.json&logo=patreon" |
112 |
| - > |
113 |
| - </a> |
114 |
| - <a |
115 |
| - class="text-decoration-none" |
116 |
| - href="https://www.paypal.com/paypalme/ReenigneArcher" |
117 |
| - target="_blank"> |
118 |
| - <img class="m-3" |
119 |
| - alt="PayPal" |
120 |
| - src="https://img.shields.io/static/v1?style=for-the-badge&label=PayPal&message=Donate&color=green&logo=paypal" |
121 |
| - > |
122 |
| - </a> |
123 |
| - </div> |
| 41 | + <div id="search-container"></div> |
| 42 | + </section> |
| 43 | + |
| 44 | + <!-- Platforms section--> |
| 45 | + <section class="py-5 offset-anchor" id="Platforms"> |
| 46 | + <div class="row gx-5 justify-content-center"> |
| 47 | + <div class="col-lg-8 col-xl-6"> |
| 48 | + <div class="text-center text-white"> |
| 49 | + <h2 class="fw-bolder">Platforms</h2> |
124 | 50 | </div>
|
125 | 51 | </div>
|
126 |
| - </section> |
127 |
| - |
128 |
| - </main> |
129 |
| - <!-- Footer--> |
130 |
| - <footer class="bg-dark py-4 mt-auto" id="footer-container"></footer> |
131 |
| - <!-- Bootstrap core JS--> |
132 |
| - <script src="https://app.lizardbyte.dev/node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script> |
| 52 | + </div> |
| 53 | + <div class="row gx-5" id="platforms-container"></div> |
| 54 | + </section> |
133 | 55 |
|
134 |
| - <!-- Get navbar --> |
135 |
| - <script src="https://app.lizardbyte.dev/js/navbar.js"></script> |
136 |
| - <!-- Get footer --> |
137 |
| - <script src="https://app.lizardbyte.dev/js/footer.js"></script> |
138 |
| - <!-- Discord WidgetBot --> |
139 |
| - <script src="https://app.lizardbyte.dev/js/discord.js"></script> |
140 |
| - <!-- load games and movies --> |
141 |
| - <script src="js/item_loader.js"></script> |
142 |
| - </body> |
143 |
| -</html> |
| 56 | + </div> |
| 57 | +</div> |
0 commit comments