63 lines
1.9 KiB
PHP
63 lines
1.9 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++;
|
|
}
|
|
?>
|
|
</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="/products/1">1</a></li>
|
|
<li class="page-item"><a class="page-link" href="/products/2">2</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");
|
|
?>
|