This repository has been archived by the owner on Jan 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·44 lines (39 loc) · 1.83 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
<html>
<head>
<title>Loading...</title>
<link href="backend/css/startup.css" rel="stylesheet" /> <!-- Bare minimum to conceal loading -->
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=0">
</head>
<body>
<sidebar style="left:-50vw">
<span class="ico"></span>
<ul id="nav"></ul>
</sidebar>
<include><!-- Contents of the website --></include>
</body>
<deps>
<!-- JS -->
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://unpkg.com/legit-ripple@latest/dist/ripple.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<script src="https://cdn.rawgit.com/peteboere/1517285/raw/ab9e92fe6192f4acfb157f319933bd7cc7c5b8f8/jquery.alterclass.js"></script>
<script src="https://unpkg.com/onecolor@latest/one-color.js"></script>
<script src="backend/js/utils.js"></script>
<script src="backend/js/expanding.js"></script>
<script src="backend/js/sect.js"></script>
<script src="backend/js/loadingStages.js"></script>
<script src="backend/js/index.js"></script>
<!-- Fonts -->
<link href="https://unpkg.com/mdi/css/materialdesignicons.min.css" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css?family=Lato:400,900" rel="stylesheet">
<!-- Styles -->
<link href="https://unpkg.com/legit-ripple@latest/dist/ripple.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css" rel="stylesheet">
<link href="backend/css/style.css" rel="stylesheet" />
<!-- Extras -->
<link href="./favicon.ico" rel="shortcut icon"/>
</deps>
</html>