<?php $__env->startSection('title'); ?> Gallery <?php $__env->stopSection(); ?>



<?php $__env->startSection('url'); ?> <?php echo e(url('gallery')); ?>.html <?php $__env->stopSection(); ?>



<?php $__env->startSection('description'); ?> Gallery - <?php echo e($site_option->name); ?> <?php $__env->stopSection(); ?>



<?php $__env->startSection('keywords'); ?> Gallery - <?php echo e($site_option->name); ?> <?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">



                <div class="block">



                  <div class='secondnav'>



                    <h3><?php if(Session::get('lang') =='vi'): ?> Hình ảnh <?php else: ?> Gallery <?php endif; ?></h3>



                    <ul class="navigation">



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



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



                      <?php endforeach; ?>



                      



                    </ul>



                  </div>



                </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()); ?>" title="<?php if(Session::get('lang') =='vi'): ?> Trang chủ <?php else: ?> Home <?php endif; ?>"><span itemprop="title" class="first"><?php if(Session::get('lang') =='vi'): ?> Trang chủ <?php else: ?> Home <?php endif; ?></span></a></li>







                  <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title" class="last"><?php if(Session::get('lang') =='vi'): ?> Hình ảnh <?php else: ?> Gallery <?php endif; ?></span></li>



                </ul>



              </div>



              <article>



                <h2><span> <?php if(Session::get('lang') =='vi'): ?> Hình ảnh <?php else: ?> Gallery <?php endif; ?></span></h2>



                



                <div class="gallery container-fluid">



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



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



                    <div class="album col-xs-12 col-equal">



                      <div> <a href="<?php echo e(url($item->alias)); ?>" title="<?php echo e($item->title); ?>"> <img class="img-thumbnail" src="<?php echo e(url($item->thumb)); ?>"/> </a>



                        <div class="caption">



                          <h4><?php echo e($item->title); ?></h4>



                        </div>



                      </div>



                    </div>



                    <?php endforeach; ?>



                    



                  </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(); ?>