-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.html
27 lines (21 loc) · 851 Bytes
/
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
<!DOCTYPE html>
<html ng-app="myApp.component">
<head>
<base href="/index.html">
<link rel="stylesheet" href="assets/css/app.css">
<script src="lib/angular.js"></script>
<script src="lib/angular_1_router.js"></script>
<script src="app/app.js"></script>
<script src="app/shared/my-take-focus.directive.js"></script>
<script src="app/my-navigation-menu.component.js"></script>
<script src="app/my-dashboard.component.js"></script>
<script src="app/villains/index.js"></script>
<script src="app/villains/villains.service.js"></script>
<script src="app/villains/my-villains.component.js"></script>
<script src="app/villains/my-villain.component.js"></script>
<script src="app/villains/my-favourite-villains.component.js"></script>
</head>
<body>
<ng-outlet></ng-outlet>
</body>
</html>