-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommerce.php
59 lines (46 loc) · 1.75 KB
/
Commerce.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
include 'header.php';
require("functions/categories.php");
?>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/product.css" rel="stylesheet">
<section>
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="left-sidebar">
<!-- h2 class="title text-center">Features Items</h2> -->
<div class="panel-group category-products" id="accordian"><!--category-productsr-->
<div class="panel panel-default">
</div>
</div><!--/category-products-->
<div class="brands_products"><!--brands_products-->
<!-- <h2>Brands</h2>
<div class="brands-name">
<ul class="nav nav-pills nav-stacked">
<li><a href="#"> <span class="pull-right">(50)</span>Acne</a></li>
<li><a href="#"> <span class="pull-right">(56)</span>Grüne Erde</a></li>
<li><a href="#"> <span class="pull-right">(27)</span>Albiro</a></li>
<li><a href="#"> <span class="pull-right">(32)</span>Ronhill</a></li>
<li><a href="#"> <span class="pull-right">(5)</span>Oddmolly</a></li>
<li><a href="#"> <span class="pull-right">(9)</span>Boudestijn</a></li>
<li><a href="#"> <span class="pull-right">(4)</span>Rösch creative culture</a></li>
</ul>
</div> -->
</div><!--/brands_products-->
<div class="price-range"><!--price-range-->
</div><!--/price-range-->
</div><!--/shipping-->
</div>
</div>
<div class="col-sm-9 padding-right">
<div class="features_items"><!--features_items-->
<h2 class="title text-center"></h2>
<?php get_com_products(); ?>
</div>
</div>
</div>
</section>
<?php
include 'footer.php';
?>