









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







<div class="container page" id="content">







    <div class="row">



        <?php if($page->category_id > 1): ?>



        <div class="col-md-2">



            <ul class="list-unstyled category">



                <?php foreach($page->category->page as $pages): ?>



                <li <?php if(Request::path() == $pages->url): ?> class="active" <?php endif; ?>><a href="http://<?php echo Option::value('domain'); ?>/<?php echo $pages->url; ?>"><?php echo $pages->title; ?></a></li>



                <?php endforeach; ?>



            </ul>



        </div>



        <div class="col-md-10">



            <h2 class="title"><?php echo $page->title; ?></h2>



            <?php echo $__env->yieldContent('_component'); ?>



        </div>



        <?php else: ?>



        <div class="col-md-12">



            <h2 class="title"><?php echo $page->title; ?></h2>



            <?php echo $__env->yieldContent('_component'); ?>



        </div>



        <?php endif; ?>



    </div>







</div>











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