Files
ChiefSoftNet2022/app/Views/products.php
T
2022-10-08 17:32:43 -04:00

92 lines
3.2 KiB
PHP

<?php
include("header.php");
?>
<section class="wrapper bg-light">
<div class="container pt-10 pt-md-14 text-center">
<div class="row">
<div class="col-md-8 col-lg-7 col-xl-6 col-xxl-5 mx-auto">
<h1 class="display-1 mb-3">Projects</h1>
<p class="lead fs-lg px-lg-10 px-xxl-8">Check out some of our awesome projects.</p>
</div>
<!-- /column -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</section>
<!-- /section -->
<section class="wrapper bg-light">
<div class="container pt-9 pt-md-11 pb-14 pb-md-16">
<div class="projects-overflow mt-md-10 mb-10 mb-lg-15">
<?php
$ic= 0;
foreach($product_list AS $prow){
if ($ic%2==0){
include 'products/first.php';
}
else{
include 'products/second.php';
}
$ic++;
}
?>
<!-- /.project -->
<div class="project item">
<div class="row">
<figure class="col-lg-8 col-xl-6 offset-xl-1 rounded"> <img src="./assets/img/photos/cs22.jpg" alt="" /></figure>
<div class="project-details d-flex justify-content-center flex-column" style="right: 15%; bottom: 25%;">
<div class="card shadow rellax" data-rellax-xs-speed="0" data-rellax-mobile-speed="0">
<div class="card-body">
<div class="post-header">
<div class="post-category text-line text-red mb-3">Concept</div>
<h2 class="post-title mb-3">Porta Ornare Cras</h2>
</div>
<!-- /.post-header -->
<div class="post-content">
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.</p>
<a href="#" class="more hover link-red">See Project</a>
</div>
<!-- /.post-content -->
</div>
<!-- /.card-body -->
</div>
<!-- /.card -->
</div>
<!-- /.project-details -->
</div>
<!-- /.row -->
</div>
<!-- /.project -->
</div>
<!-- /.projects-overflow -->
<nav class="d-flex justify-content-center" aria-label="pagination">
<ul class="pagination">
<li class="page-item disabled">
<a class="page-link" href="#" aria-label="Previous">
<span aria-hidden="true"><i class="uil uil-arrow-left"></i></span>
</a>
</li>
<li class="page-item active"><a class="page-link" href="#">1</a></li>
<li class="page-item"><a class="page-link" href="#">2</a></li>
<li class="page-item"><a class="page-link" href="#">3</a></li>
<li class="page-item">
<a class="page-link" href="#" aria-label="Next">
<span aria-hidden="true"><i class="uil uil-arrow-right"></i></span>
</a>
</li>
</ul>
<!-- /.pagination -->
</nav>
<!-- /nav -->
</div>
<!-- /.container -->
</section>
<!-- /section -->
</div>
<?php
include("footer.php");
?>