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

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

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

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

<?php $__env->startSection('image'); ?> <?php echo url($page->image); ?> <?php $__env->stopSection(); ?>

<?php $__env->startSection('site_name'); ?> <?php echo $page->title; ?> <?php $__env->stopSection(); ?>

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

<div class="wrapper-breadcrums">

  <div class="breadcrumbs">

    <ul class="items">

      <li class="item home"> <a href="<?php echo e(url()); ?>" title="Đến trang chủ"> Trang chủ </a> </li>

      <li class="item cms_page"> <strong><?php echo e($page->title); ?></strong> </li>

    </ul>

  </div>

</div>

<main id="maincontent" class="page-main  page-layout-2columns-left cms-page-view"><a id="contentarea" tabindex="-1"></a>

  <div class="columns">

    <div class="column main">

      <div class="page-title-wrapper">

        <h1 class="page-title"

        > <span class="base" data-ui-id="page-title-wrapper" ><?php echo e($page->title); ?></span> </h1>

      </div>

      

      <div class="ct-page">

        <?php echo $page->content; ?>



      </div>

    </div>



    <div class="sidebar sidebar-main">

      <ul>

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

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

        <?php endforeach; ?>

      </ul>

    </div>

  </div>

</main>

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

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