-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (63 loc) · 2.71 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
<!DOCTYPE html>
<html>
<head>
<title>BLIS F1 Challenge</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preload" as="font" href="fonts/Formula1-Regular.woff2" type="font/woff2" crossorigin="anonymous">
<link rel="preload" as="font" href="fonts/Formula1-Italic.woff2" type="font/woff2" crossorigin="anonymous">
<link rel="preload" as="font" href="fonts/Formula1-Bold.woff2" type="font/woff2" crossorigin="anonymous">
<link rel="preload" as="font" href="fonts/Formula1-Black.woff2" type="font/woff2" crossorigin="anonymous">
<link rel="preload" as="font" href="fonts/Formula1-Wide.woff2" type="font/woff2" crossorigin="anonymous">
<link rel="preload" as="font" href="fonts/F1YEARRegular.woff2" type="font/woff2" crossorigin="anonymous">
<link rel="stylesheet" href="fonts/fonts.css" type="text/css" />
<link rel="stylesheet" href="main.css" type="text/css" />
</head>
<body>
<div class="page">
<header class="page__header">
<h1 class="page__title">
<img src="img/f1_logo.svg" alt="F1" class="page__f1-logo" />
<img src="img/blis_logo.svg" alt="BLIS.digital" class="page__blis-logo" />
<span class="page__title-caption">BLIS F1 Challenge</span>
</h1>
</header>
<main class="page__content">
<div class="results">
<div class="results__nav-container">
<ul class="results__nav" id="results-nav"></ul>
</div>
<div class="results__content" id="results-container">
<table class="results__table">
<thead>
<tr>
<th>#</th>
<th>League</th>
<th>Naam</th>
<th>Rondetijd</th>
<th>Delta</th>
<th>Simulator</th>
<th>Compound</th>
<th>Punten</th>
</tr>
</thead>
</table>
</div>
</div>
</main>
<footer class="page__footer">
</footer>
</div>
<script src="enums.js"></script>
<script src="models.js"></script>
<script src="points.js"></script>
<script src="leagues.js"></script>
<script src="drivers.js"></script>
<script src="races.js"></script>
<!-- Race results -->
<script>const results = {};</script>
<script src="results/1-australia.js"></script>
<!-- -->
<script src="main.js"></script>
</body>
</html>