-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (33 loc) · 1.4 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
<!doctype html>
<html ng-app="componentA">
<head>
<title>{{pageTitle}}</title>
<base href="/page-title/">
<!--
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Vendors CSS
-->
<!--
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Components CSS
-->
</head>
<body>
<div ui-view="body"></div>
<!--
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Vendors JS
-->
<script src="vendors/angular/angular.js"></script>
<script src="vendors/angular-ui-router/release/angular-ui-router.js"></script>
<!--
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Components JS
-->
<script src="dist/page-title.js"></script>
<script src="components/component-a/component-a.js"></script>
<script src="components/component-a/component-b/component-b.js"></script>
<script src="components/component-a/component-b/component-c/component-c.js"></script>
<script src="components/component-a/component-b/component-c/component-d/component-d.js"></script>
</body>
</html>