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

  <div class="containerOuter row">
    <div class="sideBar col-lg-3 hideMobile">
      <div class="header">Events</div>
      <ul>
        <li><a href="<?php echo e(url('Event')); ?>">View All</a> </li>
		<?php foreach($year_list as $year_i): ?>
		<li><a href="<?php echo e(url('Event?year='.$year_i)); ?>" class="<?php echo $year==$year_i ? ' active': '';?>"><?php echo $year_i;?></a> </li>
		<?php endforeach; ?>
        
      </ul>
    </div>
    <div class="pageWrap floatRight col-lg-9 col-xs-12">
      <!--<div class="subBanner"><img src="images/subBanner/education.jpg"/></div>-->
      <div class="pageCont">
        <h1><?php echo isset($event->title) ? $event->title : NULL?></h1>

        <div><?php echo isset($event->content) ? $event->content : NULL?></div>



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


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