-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
40 lines (34 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>APIShift | Welcome</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font & CSS -->
<link href="externals/styles/google-roboto.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css" rel="stylesheet">
<link href="externals/styles/vuetify.css" rel="stylesheet">
<!-- System CSS -->
<link href="UI/style/main.css" rel="stylesheet">
</head>
<body>
<div id="app">
<!-- Notifications -->
<component :is="app_notifications" :alerts="alerts"></component>
<!-- Loader -->
<!-- Navigator -->
<!-- Page Body -->
<router-view></router-view>
<!-- Footer -->
</div>
<!-- Scripts -->
<script src="externals/scripts/vue.js"></script>
<script src="externals/scripts/vuetify.js"></script>
<script src="externals/scripts/http-vue-loader.js"></script>
<script src="externals/scripts/vue-router.js"></script>
<script src="externals/scripts/jquery.js"></script>
<!-- System scripts -->
<script src="control/UI/scripts/APIShift.js"></script>
<script src="UI/scripts/main.js"></script>
</body>
</html>