<?php
include './class/include.php';
?>
<html lang="zxx">
<head>
<!-- meta tag -->
<title>Gallery | Explore Thomas Gall School's Events and Activities | thomasgallschool.com</title>
<meta name="description" content="Explore the gallery of images and videos showcasing events, activities, and facilities at Thomas Gall School. Get a glimpse into our vibrant school community and the experiences we offer.">
<meta name="keywords" content="Gallery, images, videos, events, activities, facilities, Thomas Gall School, school community">
<meta name="author" content="Thomas Gall School"/>
<meta charset="utf-8">
<!-- responsive tag -->
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- favicon -->
<link rel="apple-touch-icon" href="apple-touch-icon.html">
<link rel="shortcut icon" type="image/x-icon" href="images/favtgs.jpg">
<!-- bootstrap v4 css -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<!-- font-awesome css -->
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<!-- animate css -->
<link rel="stylesheet" type="text/css" href="css/animate.css">
<!-- owl.carousel css -->
<link rel="stylesheet" type="text/css" href="css/owl.carousel.css">
<!-- slick css -->
<link rel="stylesheet" type="text/css" href="css/slick.css">
<!-- magnific popup css -->
<link rel="stylesheet" type="text/css" href="css/magnific-popup.css">
<!-- Offcanvas CSS -->
<link rel="stylesheet" type="text/css" href="css/off-canvas.css">
<!-- flaticon css -->
<link rel="stylesheet" type="text/css" href="fonts/flaticon.css">
<!-- flaticon2 css -->
<link rel="stylesheet" type="text/css" href="fonts/fonts2/flaticon.css">
<!-- rsmenu CSS -->
<link rel="stylesheet" type="text/css" href="css/rsmenu-main.css">
<!-- rsmenu transitions CSS -->
<link rel="stylesheet" type="text/css" href="css/rsmenu-transitions.css">
<!-- style css -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- responsive css -->
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="home1">
<!--Preloader area start here-->
<div class="book_preload">
<div class="book">
<div class="book__page"></div>
<div class="book__page"></div>
<div class="book__page"></div>
</div>
</div>
<!--Preloader area end here-->
<!--Full width header Start-->
<?php include "header.php"?>
<!--Full width header End-->
<!-- Gallery Start -->
<div class="rs-gallery gallery-top-p gallery-pag">
<div class="container">
<div class="sec-title-2 mb-50 text-center">
<h2>Our GALLERY</h2>
</div>
<div class="row">
<?php
$GALLERY = new AlbumPhoto(NULL);
foreach ($GALLERY->all() as $gallery) {
?>
<div class="col-lg-4 col-md-6 gallery-mb">
<div class="gallery-item">
<img src="upload/photo-album/gallery/thumb/<?php echo $gallery['image_name']; ?>" alt="Gallery Image" />
<div class="gallery-desc">
<!-- <h3><a href="upload/photo-album/gallery/<?php echo $gallery['image_name']; ?>"><?php echo $gallery['caption']; ?></a></h3> -->
<!-- <p>The students of the department study <br>tour each year different</p> -->
<a class="image-popup" href="upload/photo-album/gallery/<?php echo $gallery['image_name']; ?>" title="<?php echo $gallery['caption']; ?>">
<i class="fa fa-search gallry_zoom_img"></i>
</a>
</div>
</div>
</div>
<?php
}
?>
</div>
</div>
</div>
<!-- Gallery End -->
<?php include "footer.php"?>
<!-- Canvas Menu end -->
<!-- modernizr js -->
<script src="js/modernizr-2.8.3.min.js"></script>
<!-- jquery latest version -->
<script src="js/jquery.min.js"></script>
<!-- bootstrap js -->
<script src="js/bootstrap.min.js"></script>
<!-- owl.carousel js -->
<script src="js/owl.carousel.min.js"></script>
<!-- slick.min js -->
<script src="js/slick.min.js"></script>
<!-- isotope.pkgd.min js -->
<script src="js/isotope.pkgd.min.js"></script>
<!-- imagesloaded.pkgd.min js -->
<script src="js/imagesloaded.pkgd.min.js"></script>
<!-- wow js -->
<script src="js/wow.min.js"></script>
<!-- counter top js -->
<script src="js/waypoints.min.js"></script>
<script src="js/jquery.counterup.min.js"></script>
<!-- magnific popup -->
<script src="js/jquery.magnific-popup.min.js"></script>
<!-- rsmenu js -->
<script src="js/rsmenu-main.js"></script>
<!-- plugins js -->
<script src="js/plugins.js"></script>
<!-- main js -->
<script src="js/main.js"></script>
</body>
</html> |