-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.18 KB
/
index.html
File metadata and controls
36 lines (32 loc) · 1.18 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
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Open Data - Listas</title>
<link rel="preload" href="assets/styles.css?v=3" as="style" onload="this.rel='stylesheet'" />
<noscript><link rel="stylesheet" href="assets/styles.css?v=3" /></noscript>
</head>
<body>
<header class="site-header">
<h1>Open Video Game Data</h1>
<p class="subtitle">Escolha uma lista para ver o CSV agregado</p>
</header>
<main class="container">
<section class="controls" id="main-list">
<div class="search-bar">
<input id="search" type="search" placeholder="Buscar listas..." autocomplete="off">
</div>
<div id="summary" class="summary" aria-live="polite"></div>
</section>
<section id="home">
<div id="h-status" class="status">Carregando listas...</div>
<div id="groups" class="groups" aria-live="polite"></div>
</section>
</main>
<footer class="site-footer">
<small>Dados em CSV — MIT License</small>
</footer>
<script src="js/index.js?v=3" type="module"></script>
</body>
</html>