File "gallery.php"

Full Path: /home/ichhrkpd/public_html/application/language/res_forms/gallery.php
File size: 1.93 KB
MIME-type: text/html
Charset: utf-8

<!-- 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 -->