-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
63 lines (60 loc) · 2.09 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="module" src="js/index.js" defer></script>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>Liveresults</title>
</head>
<body>
<header>
<h1>Liveresults</h1>
<span id="settings" class="nav-icon">⚙️</span>
</header>
<section id="settings-wrapper" class="hidden">
<div id="settings-card">
<span id="settings-close-btn">❌</span>
<h2>Paramètres</h2>
<ul id="settings-list">
<li>
<h3>Langue</h3>
<select id="setting-lang">
<option value="french">Français</option>
</select>
</li>
<li>
<h3>Cache</h3>
<p><span id="cache-size"></span> éléments</p>
<button class="btn-like" id="setting-clear-cache">Supprimer le cache</button>
</li>
</ul>
</div>
</section>
<main>
<section id="search">
<h2 class="section-title">Rechercher</h2>
<input type="search" placeholder="Nom, date ou organisateur">
<p id="result-count"></p>
<ul id="search-results" class="competitions-list"></ul>
</section>
<section id="live-today">
<h2 class="section-title">Live aujourd'hui</h2>
<p class="loading">
<span>Chargement...</span>
<span class="loading-spinner"></span>
</p>
<ul class="competitions-list"></ul>
</section>
<section id="not-live-today">
<h2 class="section-title">Autres compétitions</h2>
<p class="loading">
<span>Chargement...</span>
<span class="loading-spinner"></span>
</p>
<ul id="date-list"></ul>
</section>
</main>
</body>
</html>