?
Current Path : /home1/savoy/www/savoyeducation.com/Backup23-11-16/backup/application/views/site/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/www/savoyeducation.com/Backup23-11-16/backup/application/views/site/gallery.php |
<?php /* * To change this template, choose Tools | Templates * and open the template in the editor. */ ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <?php $this->load->view('site/header-gallery'); ?> </head> <body> <div id="container_wrapper"> <?php $this->load->view('site/menu'); ?> <div id="wrapper"> <!-- Home Content Part - Box Three ================================================== ================================================== --> <div class="container boxtwo_full"> <div class="inner_banner"> <img src="<?=base_url();?>assets/images/gallery_inner.jpg" alt="Gallery"/> </div><!--inner_banner end --> <div class="boxtwo_clear"></div> <div class="second_full"> <section class="boxtwo_full_in"> <h3 class="in_cont_head">Gallery</h3> <div class="gallery"> <?php if ($folders->num_rows() > 0) { foreach ($folders->result_array() as $dir) { ?> <div class="gallery_thumb"> <a href="<?=site_url();?>/site/photo-gallery/<?=$dir['directory_id'];?>"> <div class="gallery_directory"> <img src="<?=base_url()?>/assets/images/gallery/folder/<?=$dir['directory_image'];?>" width="80" height="72" alt="<?=$dir['directory_name'];?>"/> </div> <div class="gallery_directory_name"><?=$dir['directory_name'];?></div> </a> </div> <?php } } ?> </div> </section> </div> <!-- one-third column ends here --> </div> <!-- container ends here --> </section> <?php $this->load->view('site/footer'); ?> </div> </body>