-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlevel01.htm
More file actions
22 lines (22 loc) · 732 Bytes
/
Copy pathlevel01.htm
File metadata and controls
22 lines (22 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html ng-app="store">
<head>
<meta charset="UTF-8">
<title>learn angularjs</title>
<link rel="stylesheet" href="css/bootstrap-3.3.0.min.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body ng-controller="StoreController as store">
<div class="list-items">
<!-- list-item -->
<div class="list-item" ng-repeat="product in store.products" ng-hide="product.isSoldOut">
<h1> {{product.name}} </h1>
<h2> ${{product.price}} </h2>
<p> {{product.description}} </p>
<button ng-show="product.canPurchase">Add to Cart</button>
</div>
</div>
<script src="js/angular-1.2.27.js"></script>
<script src="js/level01.js"></script>
</body>
</html>