-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·107 lines (93 loc) · 3.34 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
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Amgen Soccer League</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg static-top">
<div class="container">
<a class="navbar-brand" href="#">Amgen Soccer League</a>
</div>
</nav>
<!-- Page Content -->
<div class="container">
<div class="loader text-center">
<div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div>
</div>
<h6 class="text-secondary text-right updated d-none"></h1>
<div class="row">
<div class="col-lg-12 text-center tab-toggle d-none">
<div class="btn-group" role="group" aria-label="Basic example">
<button type="button" class="btn btn-primary game-day">Game Day</button>
<button type="button" class="btn btn-secondary league-table">League Table</button>
</div>
</div>
</div>
<!-- ACCORDION START-->
<div class="accordion game-day-tab" id="gameResults">
</div>
<!-- ACCORDION END-->
<!-- LEAGUE TABLE START-->
<table class="table table-sm league-table-tab d-none table-striped">
<thead>
<th class="text-center">Team</th>
<th data-toggle="tooltip" data-placement="top" title="Games Played">
GP
</th>
<th data-toggle="tooltip" data-placement="top" title="Wins">
W
</th>
<th data-toggle="tooltip" data-placement="top" title="Draws">
D
</th>
<th data-toggle="tooltip" data-placement="top" title="Losts">
L
</th>
<th data-toggle="tooltip" data-placement="top" title="Goals Scored">
GS
</th>
<th data-toggle="tooltip" data-placement="top" title="Goals Conceded">
GC
</th>
<th data-toggle="tooltip" data-placement="top" title="Goals Difference">
GD
</th>
<th data-toggle="tooltip" data-placement="top" title="Points">
Pts
</th>
</thead>
<tbody>
</tbody>
</table>
<!-- LEAGUE TABLE START-->
</div>
<footer class="d-none">
<p class="text-right">Contact: jinlong.yang@amgen.com</p>
</footer>
<!-- Bootstrap core JavaScript -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.js"></script> -->
<script
src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.9.2/d3.js"></script>
<script src="js/script.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-141821373-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-141821373-1');
</script>
</body>
</html>