-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
18 lines (18 loc) · 727 Bytes
/
Copy pathindex.html
File metadata and controls
18 lines (18 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<!-- Dependencies -->
<script type="text/javascript" src="bower_components/angular/angular.min.js"></script>
<script type="text/javascript" src="bower_components/angular-ui-router/release/angular-ui-router.min.js"></script>
<script type="text/javascript" src="bower_components/oclazyload/dist/ocLazyLoad.min.js"></script>
<script data-main="app/main" src="bower_components/requirejs/require.js"></script>
</head>
<body>
<h1>0) This is from index.html !</h1>
Click on the links to navigate :
<a ui-sref="parent.dashboard">Go to Parent Dashboard</a>
<a ui-sref="parent.listing">Go to Parent Listing</a>
<hr />
<div ui-view></div>
</body>
</html>