-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
42 lines (38 loc) · 1.65 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<script src="js/html2canvas.min.js"></script>
<title>GOT Characters</title>
</head>
<body>
<div id="content">
<header>
<nav-component></nav-component>
</header>
<main>
<main-component></main-component>
</main>
<footer>
<footer-component></footer-component>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.min.js"></script>
<script src="./data/bodies.js"></script>
<script src="./components/nav-component.js"></script>
<script src="./components/footer-component.js"></script>
<script src="./components/part-selector-component.js"></script>
<script src="./components/main-component.js"></script>
<script>
new Vue({
el: "#content",
components: {'nav-component': NavComponent, 'main-component': MainComponent, 'footer-component': FooterComponent },
});
</script>
</body>
</html>