<?php $__env->startSection('title'); ?> <?php echo $cate_current->title_seo; ?> <?php $__env->stopSection(); ?>



<?php $__env->startSection('url'); ?> <?php echo e(url($cate_current->alias)); ?> <?php $__env->stopSection(); ?>



<?php $__env->startSection('description'); ?> <?php echo $cate_current->description_seo; ?> <?php $__env->stopSection(); ?>



<?php $__env->startSection('keywords'); ?> <?php echo $cate_current->keyword_seo; ?> <?php $__env->stopSection(); ?>



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







<div id="container-content">



  <article id="content">



    <div class="container-fluid">



      <div class="row main-content">



        <div class="hidden-xs hidden-sm visibility-md col-md-3">



          <section id="sidebar">







            <div id="sidebar-container">



              <div id="side">



                <?php foreach($cate_product as $item): ?>



                <div class="block">



                  <div class='secondnav'><h3><?php echo e($item->name); ?></h3><ul class="navigation">



                    <?php foreach($cate_product_sub as $sub): ?>



                    <?php if($item->id == $sub->parent_id): ?>



                    <li <?php if($cate_current->alias == $sub->alias): ?> class="active" <?php endif; ?> >



                      <a href="<?php echo e(url($sub->alias)); ?>"><?php echo e($sub->name); ?></a>



                    </li>



                    <?php endif; ?>



                    <?php endforeach; ?>



                  </ul>



                </div>



                <?php endforeach; ?>



              </div>



            </div>



          </div>



        </section>



      </div> 



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



        <section id="main-article">



          <article>



            <div id="breadcrumbs">



              <ul class="breadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">



                <li><a itemprop="url" href="<?php echo e(url()); ?>"  <?php if(Session::get('lang') == 'vi'): ?> title="Trang chủ" <?php else: ?> title="Home" <?php endif; ?>><span itemprop="title" class="first"><?php if(Session::get('lang') == 'vi'): ?>Trang chủ <?php else: ?> <?php endif; ?></span></a></li>



                <?php if($cate_current->parent_id > 0 && $cate_root): ?>



                <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" href="<?php echo e(url(@$cate_root->alias)); ?>" title="<?php echo e(@$cate_root->name); ?>"><span itemprop="title"><?php echo e(@$cate_root->name); ?></span></a></li>



                <?php endif; ?>



                <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title" class="last"><?php echo e($cate_current->name); ?></span></li>



              </ul>



            </div>                 



             <article>



              <h2><span><?php echo e($cate_current->name); ?></span></h2>



              <p><?php echo e($cate_current->description); ?></p>



              <div class="container-fluid">



                <div class="row row-equal-height">



                  <?php foreach($product as $item): ?>



                  <div class="prod col-xs-12 col-sm-6 col-md-4 col-equal">



                    <div class="box">



                      <h4><a href="<?php echo e(url($item->alias)); ?>" title="<?php echo e($item->name); ?>"><?php echo e($item->name); ?></a></h4>



                      <div class="variants">



                        <a href="<?php echo e(url($item->alias)); ?>" title="<?php echo e($item->name); ?>">



                          <img class="center-block" src="<?php echo e(url($item->image)); ?>" alt="<?php echo e($item->name); ?>"/>



                        </a>



                      </div>



                      <p>



                      <?php if($item->size): ?> <strong>Kích thước:</strong> <?php echo e($item->size); ?><br/><?php endif; ?>



                      <?php echo e(Helper::getDescription($item->description,30)); ?> </p>



                    </div>



                  </div>



                  <?php endforeach; ?>



                </div>



                  <div class="paginator"> 







                  <?php echo str_replace('/?','?',$product->render()); ?>







               </div>



              </div>



            </article>



          </div>  



        </section>



      </div>



    </div>



  </div>



</article>



</div>



</div>



<?php $__env->stopSection(); ?>



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