-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (23 loc) · 947 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
28
29
30
31
32
33
34
35
36
37
<html ng-app="productsLists">
<head>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="styles.css">
</head>
<body ng-cloak>
<nav class="navbar navbar-default navbar-inverse" class="container-fluid">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">REA Challenge</a>
</div>
</div>
</nav>
<div class="container">
<product-list></product-list>
</div>
<script src="bower_components/angular/angular.js"></script>
<script src="products/module.js"></script>
<script src="products/product-list.component.js"></script>
<script src="products/product-details.component.js"></script>
<script src="products/product.component.js"></script>
</body>
</html>