-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (39 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker|Roboto:400,500,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href='./css/style.css'>
<link rel="stylesheet" href='./css/navbar.css'>
<link rel="stylesheet" href='./css/home.css'>
<link rel="stylesheet" href='./css/about.css'>
<link rel="stylesheet" href='./css/dashboard.css'>
<link rel="stylesheet" href='./css/chapter.css'>
<title>The Devil is in the Details</title>
</head>
<body>
<noscript>
<strong>We're sorry but this website doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app">
<app-navbar></app-navbar>
<main :style="{'background-position-x': navbarWidth}">
<router-view/>
</main>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.10/dist/vue.js"></script>
<script src="https://unpkg.com/vuex@3.1.1/dist/vuex.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<script src="./components/Navbar.js"></script>
<script src="./components/Chapter.js"></script>
<script src="./components/Dashboard.js"></script>
<script src="./components/About.js"></script>
<script src="./components/Home.js"></script>
<script src="./router.js"></script>
<script src="./store.js"></script>
<script src="./main.js"></script>
</body>
</html>