-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (27 loc) · 1.15 KB
/
index.html
File metadata and controls
33 lines (27 loc) · 1.15 KB
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="store">
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="resources/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="resources/css/app.css">
</head>
<!-- ng-controller=Directive, StoreController=Controller name, store=alias -->
<body ng-controller="StoreController as store">
<ul class="list-group">
<!-- <li class="list-group-item" ng-repeat="product in store.products | limitTo:3 | orderBy:'-price' "> -->
<li class="list-group-item" ng-repeat="product in store.products">
<!-- <h3 ng-include="'product-title.html'"></h3> -->
<!-- Element Directive -->
<h3> <product-title></product-title> </h3>
<!-- Attribute Directive -->
<!-- <h3 product-title></h3> -->
<!-- Image Gallery -->
<product-gallery></product-gallery>
<!-- Product Panels -->
<product-panels></product-panels>
</li>
</ul>
<script type="text/javascript" src="resources/js/angular.min.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>