-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (44 loc) · 1.88 KB
/
index.html
File metadata and controls
59 lines (44 loc) · 1.88 KB
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
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<base href="http://localhost:3000">
<!-- build:css css/plugin.css-->
<link rel="stylesheet" href="node_modules/angular-toastr/dist/angular-toastr.min.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<!-- endbuild-->
<!-- build:css css/styles.css-->
<link rel="stylesheet" href="app/assets/css/index.css">
<!-- endbuild-->
</head>
<body ng-app="spa" ng-cloak>
<spa-header></spa-header>
<!-- build:js js/vendor.js-->
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/angular-ui-router/release/angular-ui-router.min.js"></script>
<script src="node_modules/angular-animate/angular-animate.min.js"></script>
<script src="node_modules/angular-toastr/dist/angular-toastr.js"></script>
<script src="node_modules/angular-toastr/dist/angular-toastr.tpls.js"></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- endbuild-->
<!-- build:js js/bundle.js-->
<script src="app/app.js"></script>
<script src="app/router/index.js"></script>
<script src="app/configs/toastrConfig.js"></script>
<script src="app/models/post.js"></script>
<script src="app/models/comment.js"></script>
<script src="app/models/user.js"></script>
<script src="app/components/index.js"></script>
<script src="app/controllers/postsCtrl.js"></script>
<script src="app/controllers/postCtrl.js"></script>
<script src="app/controllers/searchCtrl.js"></script>
<script src="app/common/requestService.js"></script>
<script src="app/common/pagination.js"></script>
<script src="app/common/constants.js"></script>
<script src="app/common/filters.js"></script>
<!-- endbuild-->
</body>
</html>