-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (22 loc) · 885 Bytes
/
index.html
File metadata and controls
27 lines (22 loc) · 885 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
<!DOCTYPE html>
<html ng-app='gemStore'>
<head>
<link rel="stylesheet" type="text/css" href="bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="application.css" />
</head>
<body ng-controller='StoreController as store'>
<h1>Gem Store</h1>
<div class='product' ng-hide='product.soldOut' ng-repeat='product in store.products'>
<h3>
{{ product.name }}
<em class='pull-right'>{{ product.price | currency }}</em>
</h3>
<product-gallery></product-gallery>
<product-tabs></product-tabs>
<button ng-show='product.canPurchase'>Add to Cart</button>
</div><!--.product-->
<script type="text/javascript" src="angular.min.js"></script>
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" src="products.js"></script>
</body>
</html>