forked from sajjadsaleem341/Plant-Nest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.php
58 lines (53 loc) · 2.37 KB
/
portfolio.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
<section class="alazea-portfolio-area section-padding-100-0 container mb-5">
<div class="container">
<div class="row">
<div class="col-12">
<!-- Section Heading -->
<div class="section-heading text-center">
<h2>Gallery</h2>
<p>We devote all of our experience and efforts for creation</p>
</div>
</div>
</div>
</div>
<?php
$categories = get_category($con);
$galleryProducts = get_product($con);
?>
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="alazea-portfolio-filter">
<div class="portfolio-filter">
<button class="btn active" data-filter="*">All</button>
<?php foreach($categories as $cat) { ?>
<button class="btn" data-filter=".cat-<?= $cat['Id'] ?>"><?= $cat['Categories'] ?></button>
<?php } ?>
<!-- <button class="btn" data-filter=".garden">Garden</button>
<button class="btn" data-filter=".home-design">Home Design</button>
<button class="btn" data-filter=".office-design">Office Design</button> -->
</div>
</div>
</div>
</div>
<div class="row alazea-portfolio">
<?php foreach($galleryProducts as $product) { ?>
<!-- Single Portfolio Area -->
<div class="col-12 col-sm-6 col-lg-3 single_portfolio_item cat-<?= $product['Category_Id'] ?> home-design wow fadeInUp" data-wow-delay="100ms">
<!-- Portfolio Thumbnail -->
<div class="portfolio-thumbnail bg-img" style="background-image: url(image/<?= $product['Image'] ?>);"></div>
<!-- Portfolio Hover Text -->
<div class="portfolio-hover-overlay">
<a href="product.php?id=<?= $product['Id'] ?>" class="portfolio-img d-flex align-items-center justify-content-center" title="<?= $product['Name'] ?>">
<div class="port-hover-text">
<h3><?= $product['Name'] ?></h3>
<h5><?= $product['Categories'] ?></h5>
</div>
</a>
</div>
</div>
<?php } ?>
<!-- / Single Portfolio Area -->
</div>
</div>
</section>