-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (46 loc) · 2 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
<html>
<head>
<meta charset="utf-8" />
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="styles/main.css" rel="stylesheet" type="text/css">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment-with-locales.min.js"></script>
<script src="scripts/moment-timezone-with-data-10-year-range.min.js"></script>
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="scripts/main.js"></script>
<script>
let createBattleRatingDescription = (br, mes) => ({ br: br, message: mes });
const timeFramesData = [
[4, 10],
[17, 1]
]; // Moscow timezone
const battleRatings = [
createBattleRatingDescription(12.7, ""),
createBattleRatingDescription(11.7, ""),
createBattleRatingDescription(10.7, ""),
createBattleRatingDescription(9.7, ""),
createBattleRatingDescription(8.7, ""),
createBattleRatingDescription(7.7, ""),
createBattleRatingDescription(6.7, ""),
createBattleRatingDescription(5.7, ""),
createBattleRatingDescription(4.7, "")
];
</script>
</head>
<title>Squadron battles schedule</title>
<body>
<div class="container">
<div class="row">
<div class="col-lg align-self-center">
<div id="timeframes">
</div>
</div>
<div class="col-lg d-flex justify-content-center" id="brChangeTimeline">
</div>
</div>
</div>
</body>
</html>