-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (84 loc) · 3.24 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>EBF Championships by KTA - Statistics</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="See statistics from EMC 2023 Wittelsheim, France">
<meta property="og:title" content="EMC 2023 Statistics">
<meta property="og:type" content="website">
<meta property="og:image"
content="http://s3.amazonaws.com/vnn-aws-sites/3222/files/2015/12/e02bacb8e87d4c8c-bowling_quilles.jpg">
<meta property="og:description" content="See statistics from EMC 2023 Wittelsheim, France">
<link rel="stylesheet" href="app.css" media="screen" title="no title" charset="utf-8">
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-75536108-1', 'auto');
ga('send', 'pageview');
</script>
<script src="app.min.js"></script>
</head>
<body>
<div class="container">
<h1 class="page-title">EMC 2023 Statistics</h1>
<h2 class="sub-title">Will update after each game</h2>
<div class="app">
<div>
<div id="playerChart" class="chart"></div>
</div>
<div>
<div class="grid-4">
<div class="number-container" id="lowGame"></div>
<div class="number-container" id="avgGame"></div>
<div class="number-container" id="highGame"></div>
<div class="number-container" id="totalScore"></div>
</div>
<div id="playerGameChart" class="chart"></div>
<div class="grid-2">
<div>
<div id="countryChart" class="chart"></div>
<div id="disciplineChart" class="chart"></div>
<div id="handChart" class="chart"></div>
</div>
<div>
<div id="genderChart" class="chart"></div>
<div id="squadChart" class="chart"></div>
<div id="ageChart" class="chart"></div>
</div>
</div>
<div id="lanePairChart" class="chart"></div>
<table id="table" class="table">
<thead>
<tr>
<th>Name</th>
<th>Discipline</th>
<th>Gender</th>
<th>G1</th>
<th>G2</th>
<th>G3</th>
<th>G4</th>
<th>G5</th>
<th>G6</th>
<th>Average</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<div class="footer">
Powered by <a href="https://www.bowlingresults.info/emc/2023">bowlingresults.info</a>
</div>
</div>
</body>
</html>