Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
application
/
views
:
gallery.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<!-- Start main-content --> <div class="main-content"> <!-- Section: inner-header --> <section style="background-color: #dcebf5"> <div class="container pt-10 pb-10"> <!-- Section Content --> <div class="section-content"> <div class="row"> <div class="col-md-12 text-center"> <h4 class="title">Photo Gallery</h4> </div> <div class="col-md-12"> <!-- Portfolio Gallery Grid --> <div class="gallery-isotope default-animation-effect grid-6 gutter-small clearfix" data-lightbox="gallery"> <!-- Portfolio Item Start --> <?php $i=0; foreach ($img_data as $id){ if($id->img_type=='G'){ $image_link_short=base_url()."idcm/img/gallery/$id->img_id".'.jpg'; ?> <!-- Portfolio Item Start --> <div class="gallery-item"> <a href="<?php echo $image_link_short;?>" data-lightbox="gallery-item" title="Ichhamati Degree College"><img src="<?php echo $image_link_short;?>" alt=""></a> </div> <!-- Portfolio Item End --> <?php } $i++; if($i==12){ break; } } ?> </div> <!-- End Portfolio Gallery Grid --> </div> </div> </div> </div> </section> </div> <!-- end main-content -->