-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathversionHistory.html
More file actions
42 lines (40 loc) · 1.98 KB
/
versionHistory.html
File metadata and controls
42 lines (40 loc) · 1.98 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width"/>
<title>Battles 2 Popology</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Urbanist&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Urbanist&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Gabarito&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="styles/style.css"/>
<link rel="stylesheet" href="styles/versionHistory.css"/>
</head>
<body>
<main id="main">
<div class="statsPageWrapper">
<div class="statsPageBody" id="statsPageBody">
<div class="headerWrapper" id="headerWrapper"></div>
<section class="blankSection">
<h2 id="versionText"></h2>
</section>
<div id="versionHistoryContainer">
</div>
</div>
</div>
</main>
</body>
<dialog class="menu" id="menu"></dialog>
<script type="module">
import { navigationBar } from "./scripts/navigation.js";
navigationBar('index')
</script>
<script type="module" src="scripts/hamburger.js"></script>
<script src="scripts/versionHistory.js"></script>
</html>