<?php $__env->startSection('content'); ?>
<div class="aboutus inner">
	<div class="breadcrumb"><a href="<?php echo e(url('/')); ?>">Home</a> > <?php if( !empty($parent) ):?><a href="<?php echo e(url('Sections/'.$parent->seo_url)); ?>"><?php echo e($parent->title); ?></a> > <?php endif;?><span><?php echo e($section->title); ?></span></div>

	
	<div class="clearfix"></div>

	<div class="tabbing on" data-tabname="events" data-tabidx="0">
		<ul class="category-list clearfix">
			
			<?php foreach($object_list as $object): ?>
			<li class="event-item">
				<h2 class="title"><?php echo e($object->title); ?></h2>
				<p class="detail"><?php echo e(Helper::stringIntercept_strip($object->content, 200)); ?></p>
				<ul class="infor">
					<li>Date: <?php echo e($object->updated_at); ?></li>
				</ul>
				<a href="<?php echo e(url('Articles/'.$object->seo_url)); ?>" class="more">&gt;&gt;more</a>
			</li>
			<?php endforeach; ?>
			
		</ul>
	</div>
	
	<nav class="pagination">
		<?php echo $pagination;?>
	</nav>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('theme_ph_layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>