-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.php
33 lines (25 loc) · 1.06 KB
/
products.php
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" lang="en">
<head>
<title>Products - CAP Distributing</title>
<meta name="description" content="We have many products availiable like wallets, headphones, mobile accessories and so much more. Come and check us out today." />
<meta name="keywords" content="audio technica, river ridge, audiobooks, ebk, headphones, wallets, mobile accessories" />
<?php include_once("templates/head.html"); ?>
</head>
<body ng-controller="StoreController as store">
<?php include_once("templates/cap-logo.html"); ?>
<?php include_once("templates/nav.html"); ?>
<div class="container">
<h2>Products</h2>
<div class="col-md-6" ng-repeat="product in store.products">
<a href ng-href="{{product.capLink}}">
<h3 class="main-product-header">{{product.brand}}</h3>
<div class="main-product-img-div">
<img class="main-product-img" ng-src="{{product.image.src}}" />
</div>
</a>
</div>
</div><?php #End .container ?>
<?php include_once("templates/footer.html"); ?>
</body>
</html>