-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (28 loc) · 967 Bytes
/
index.html
File metadata and controls
41 lines (28 loc) · 967 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<Script src="node_modules/angular/angular.js"></Script>
<script src="node_modules/angular-resource/angular-resource.js"></script>
<script src="node_modules/angular-mocks/angular-mocks.js"></script>
<script src="node_modules/angular-route/angular-route.js"></script>
<Script src="HelloWorld.js"></Script>
<link href="node_modules/bootstrap/dist/css/bootstrap.css" rel="stylesheet" />
<!-- Application Script-->
<script src="app.js"></script>
<script src="productListCtrl.js"></script>
</head>
<body ng-app="productManagement">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<div class="navbar-brand">Acme Product Management</div>
</div>
</div>
</nav>
<div class="container">
<div ng-include="'productListView.html'"></div>
</div>
</body>
</html>