<?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 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 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_imas_members']['value']) ? $_SESSION['system_setting']['title_imas_members']['value']: 'IMAS MEMBERS';?></h1>

        <div class="tabWrap">
          <div class="tabHeader">
            <span class="tab active">Regular Members</span>
            <span class="tab">Associate Members </span>
          </div>
          <div class="tabContWrap">
            <div class="tabCont">
<?php foreach($member1_list as $object): ?>
              <a href="<?php echo e($object->link); ?>" target="_blank" class="title"><?php echo isset($object->title) ? $object->title : NULL?></a><br/>
<?php endforeach; ?>
            </div>
            <div class="tabCont">
<?php foreach($member2_list as $object): ?>
              <a href="<?php echo e($object->link); ?>" target="_blank" class="title"><?php echo isset($object->title) ? $object->title : NULL?></a><br/>
<?php endforeach; ?>
            </div>
          </div>
        </div>



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

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