<!DOCTYPE html>
<?php include './class/include.php'; ?>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="jewellery shops in sri lanka, jewellery shops in galle, wedding jewellery, engagement rings, jewellery design, gem products in sri lanka, forbes gems and jewellery, best wedding jewellery in galle, blue sapphire, necklace, bangles, ear studs, pendant, diamond rings">
<meta name="description" content="Forbes Gems & Jewellery is committed to providing our customers the best value, quality, service and selection of Sapphires, Diamonds, Emeralds, Pearls and other gemstone jewellery in Sri Lanka.">
<title>Srilekha Jewellers - Gallery </title>
<!--Favicons-->
<!--Favicons-->
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<!--Bootstrap and Other Vendors-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/fontawesome-all.min.css">
<link rel="stylesheet" href="../../../../www.veepixel.com/tf/html/d-shine/vendors/owl.carousel/css/owl.carousel.html">
<link rel="stylesheet" type="text/css" href="vendors/flexslider/flexslider.css" media="screen" />
<!--Fonts-->
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Questrial" rel="stylesheet">
<!--Mechanic Styles-->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<link href="css/custom.css" rel="stylesheet" type="text/css"/>
<link href="css/lightbox.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<a href="#" id="back-to-top" title="Back to top">↑</a>
<?php include './header.php'; ?>
<!--Header-->
<section id="breadcrumbRow" class="row bnner">
<h2 class="banner-text">Gallery</h2>
<div class="row pageTitle m0">
<div class="container">
<center>
<h4 class="fleft">Gallery</h4>
</center>
<ul class="breadcrumb fright" id="">
<li><a href="#">home</a></li>
<li class="active">gallery</li>
</ul>
</div>
</div>
</section>
<section class="blog-single clearfix" style="padding-bottom: 30px;">
<div class="container">
<div class="row" style="margin-top: 50px;">
<?php
$ALBUMPHOTO = new AlbumPhoto(NULL);
$IMAGES = $ALBUMPHOTO->getAlbumPhotosById(1);
foreach ($IMAGES as $image) {
?>
<center>
<div class="col-md-3 col-sm-6 col-xs-12" style="margin-bottom:25px;">
<a class="example-image-link ahover gallery-margin" href="upload/photo-album/gallery/<?php echo $image['image_name'] ?>" data-lightbox="example-1" data-title="option caption"><img class="example-image ahover " src="upload/photo-album/gallery/thumb/<?php echo $image['image_name']; ?>" alt="image-1" /></a>
</div>
</center>
<?php
}
?>
</div>
</div>
</section>
<!--Testimonial Tabs-->
<?php include './footer.php'; ?>
<!--jQuery, Bootstrap and other vendor JS-->
<!--jQuery-->
<script src="js/custom.js" type="text/javascript"></script>
<script src="js/jquery-2.1.3.min.js"></script>
<!--Google Maps-->
<script src="https://maps.googleapis.com/maps/api/js"></script>
<!--Bootstrap JS-->
<script src="js/bootstrap.min.js"></script>
<!--Owl Carousel-->
<script src="vendors/owl.carousel/js/owl.carousel.min.js"></script>
<!--Isotope-->
<script src="vendors/isotope/isotope-custom.js"></script>
<!--FlexSlider-->
<script src="vendors/flexslider/jquery.flexslider-min.js"></script>
<script src="js/lightbox.js" type="text/javascript"></script>
<!--D-shine JS-->
<script src="js/d-shine.js"></script>
</body>
</html>
|