-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (54 loc) · 2.72 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bloglite</title>
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
<script src="https://unpkg.com/[email protected]/dist/vue-router.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vuex/3.0.1/vuex.min.js"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<!-- JavaScript -->
<script src="//cdn.jsdelivr.net/npm/[email protected]/build/alertify.min.js"></script>
<!-- CSS -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/build/css/alertify.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="frontend/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="app">
<div class="row" style="height:100vh;" v-if="Token">
<div class="col-2" style="width:13%;">
<sidebar></sidebar>
</div>
<div class="col-2">
<div class="vl"></div>
</div>
<div class="col-6">
<router-view></router-view>
</div>
</div>
<div v-else>
<router-view></router-view>
</div>
</div>
<script type="module" src="frontend/script.js"></script>
<script type="module" src="frontend/components/feed.js"></script>
<script type="module" src="frontend/components/followers.js"></script>
<script type="module" src="frontend/components/followings.js"></script>
<script type="module" src="frontend/components/login.js"></script>
<script type="module" src="frontend/components/post.js"></script>
<script type="module" src="frontend/components/profile.js"></script>
<script type="module" src="frontend/components/search.js"></script>
<script type="module" src="frontend/components/settings.js"></script>
<script type="module" src="frontend/components/showpost.js"></script>
<script type="module" src="frontend/components/sidebar.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</body>
</html>