This repository has been archived by the owner on Jul 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (41 loc) · 2.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Duckhunt statistics</title>
<!-- CSS
––––––––––––––––––––––––––––––––––––––––––––––––––-->
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="css/font-awesome-4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="static/public/js/highcharts.js"></script>
<script src="static/public/js/highcharts-more.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.2/css/bootstrap.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.22/css/dataTables.bootstrap4.min.css">
</head>
<body ng-app="myApp" style="background-color: #eaeaea;">
<!-- header
––––––––––––––––––––––––––––––––––––––––––––––––––-->
<h1 class="d-flex justify-content-center">DuckHunt TopScores</h1>
<!-- dynamic content placeholder
––––––––––––––––––––––––––––––––––––––––––––––––––-->
<div ui-view></div>
</body>
<!-- libraries
––––––––––––––––––––––––––––––––––––––––––––––––––-->
<script src="jslibs/angular.min.js"></script>
<script src="jslibs/angular-ui-router.min.js"></script>
<!-- controllers
––––––––––––––––––––––––––––––––––––––––––––––––––-->
<script src="js/myapp.js"></script>
<script src="js/samplefactory.js"></script>
<script src="home/homecontroller.js"></script>
<script src="page2/page2controller.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script src="https://cdn.datatables.net/1.10.22/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.22/js/dataTables.bootstrap.min.js"></script>
</html>