-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
46 lines (41 loc) · 2.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
41
42
43
44
45
46
<!doctype html>
<html ng-app="app" lang="en">
<head>
<title>Blogit!</title>
<link rel="apple-touch-icon" sizes="180x180" href="asset/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="asset/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="asset/images/favicon/favicon-16x16.png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css"
integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/[email protected]">
<link rel="stylesheet" href="asset/style.css"/>
</head>
<body>
<main></main>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.0/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.0/angular-route.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js"
integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]"></script>
<script src="https://unpkg.com/[email protected]/ngStorage.min.js"></script>
<script src="modules/spinner/spinner.module.js"></script>
<script src="modules/spinner/spinner.component.js"></script>
<script src="modules/authorization/authorization.module.js"></script>
<script src="modules/authorization/authorization.component.js"></script>
<script src="modules/posts/empty-posts/empty-posts.module.js"></script>
<script src="modules/posts/empty-posts/empty-posts.component.js"></script>
<script src="modules/posts/comments/comments.module.js"></script>
<script src="modules/posts/comments/comments.component.js"></script>
<script src="modules/posts/post/post.module.js"></script>
<script src="modules/posts/post/post.component.js"></script>
<script src="modules/posts/posts.component.js"></script>
<script src="modules/posts/posts.module.js"></script>
<script src="app.js"></script>
<script src="config.js"></script>
<script src="helper.js"></script>
</body>
</html>