-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (30 loc) · 1.3 KB
/
Copy pathindex.html
File metadata and controls
38 lines (30 loc) · 1.3 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
<!doctype html>
<html ng-app="app">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-route.min.js"></script>
<!--core-->
<script src="src/core/example/example.module.js"></script>
<script src="src/core/example/example.service.js"></script>
<!--shared-->
<script src="src/shared/example-list-item/example-list-item.module.js"></script>
<script src="src/shared/example-list-item/example-list-item.component.js"></script>
<!--pages-->
<script src="src/app/page1/page1.module.js"></script>
<script src="src/app/page1/page1.controller.js"></script>
<script src="src/app/page2/page2.module.js"></script>
<script src="src/app/page2/page2.controller.js"></script>
<!--app-->
<script src="src/app/app.module.js"></script>
<script src="src/app/app.config.js"></script>
<script src="src/app/app.routes.js"></script>
<!--styles-->
<link rel="stylesheet" href="src/shared/example-list-item/example-list-item.component.css">
<link rel="stylesheet" href="src/app/page1/page1.css">
<link rel="stylesheet" href="src/app/page2/page2.css">
</head>
<body>
<!--router outlet-->
<div ng-view></div>
</body>
</html>