<?php
include './db.php';
include './function.php';
$gallery = getAllImages();
?>
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Gallery - Villa Effort - Ahangama | Ahangama Villa | Hotels in Ahangama</title>
<meta name="keywords" content="Villa Effort Ahangama, neptuneecovilla, hotels in ahangama, ahangama accommodations, rooms in ahangama, Budget Hotel in Ahangama, Luxury Hotel in Ahangama, Galle Hotels, Galle, Miriisa Beach, Ahangama Beach Hotels, Beach Hotels in Ahangama, Surfing Beach in Ahangama">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon.png">
<link rel="stylesheet" type="text/css" href="revolution/css/settings.css">
<link rel="stylesheet" type="text/css" href="revolution/css/layers.css">
<link rel="stylesheet" type="text/css" href="revolution/css/navigation.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/colors.css">
<link rel="stylesheet" href="css/custom.css">
<link href="css/lightbox.min.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- <div id="preloader">
<img class="preloader" src="images/loader.gif" alt="">
</div>-->
<div id="wrapper">
<?php include './header.php'; ?>
<div class="page-parallax parallax parallax-off" data-stellar-background-ratio="1" style="background-image:url('images/banner/gallery.jpg');">
</div>
<div class="page-title">
<div class="container">
<div class="section-title">
<h3>Gallery</h3>
<p class="lead">Your home away home under the natural ambience with greenery lush on<br> modern décor for having enthusiastic holidays</p>
</div>
</div>
</div>
<div class="section">
<div class="container">
<div class="section-widget text-center">
<div class="row">
<?php
foreach ($gallery as $image) {
?>
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeIn slider-image" id="gallery">
<div class="hoverbox parallax parallax-off" data-stellar-background-ratio="1" style="background-image:url('images/gallery/thumb/<?php echo $image['image_name']; ?>');">
<a href="images/gallery/<?php echo $image['image_name']; ?>" class="box example-image-link info" data-lightbox="example-set"></a>
</div>
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
<?php include './footer.php'; ?>
</div>
<script src="js/jquery-3.1.1.min.js" type="text/javascript"></script>
<script src="js/all.js"></script>
<script src="js/custom.js"></script>
<script src="js/lightbox-plus-jquery.min.js" type="text/javascript"></script>
</body>
</html> |