<?php $__env->startSection('content'); ?>

  <div class="containerOuter row">
  
    <div class="sideBar col-lg-3 hideMobile">
      <div class="header"><?php echo isset($nav_data->title) ? $nav_data->title: '';?></div>
	  <?php $is_sub_nav = FALSE;?>
	  <?php if( !empty($nav_data->sub_list) ):?>
      <ul>
	  	<?php foreach($nav_data->sub_list as $nav_sub): ?>
        <li><a href="<?php echo isset($nav_sub->url) ? $nav_sub->url: '#';?>" class="<?php echo $nav_data->active_id==$nav_sub->id ? 'active': '';?>"><?php echo isset($nav_sub->title) ? $nav_sub->title: '';?></a> </li>
		<?php if( $nav_data->active_id==$nav_sub->id ){$is_sub_nav = TRUE;}?>
        <?php endforeach; ?>
      </ul>
	  <?php endif;?>
    </div>
	
    <div class="pageWrap floatRight col-lg-9 col-xs-12">
      <?php if( isset($section->media_path) && $section->media_path!="" ):?>
      <div class="subBanner" style="display:block;"><img src="<?php echo get_ext_path_advanced($section->media_path, $section->media_id, 'o');?>"/></div>
	  <?php endif;?>
      <div class="pageCont">
        <h1><?php echo isset($_SESSION['system_setting']['title_media_gallery']['value']) ? $_SESSION['system_setting']['title_media_gallery']['value']: 'MEDIA GALLERY';?></h1>

        <div class="galleryList">
<?php foreach($object_list as $object): ?>
          <a href="<?php echo e(url('home/gallery_detail/'.$object->id)); ?>" class="galleryThumb col-lg-4 col-xs-6" target="_blank">
            <span class="photo"><img src="<?php echo get_ext_path_advanced($object['media_path'], $object['media_id'], 'm');?>"/></span>
            <span class="title"><?php echo isset($object->title) ? $object->title : NULL?></span>
          </a>
<?php endforeach; ?>


        </div>

<?php if( count($object_list)<=0 ):?>
	<div class="videoList">Page Is Under Construction</div>
<?php endif;?>

      </div>
    </div>
  </div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('theme_imas_layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>