<!DOCTYPE html>
<html lang="en" class="app">
<head>
  <meta charset="utf-8" />
  <title><?php echo e(Theme::get('title')); ?></title>
  <meta name="keywords" content="<?php echo e(Theme::get('keywords')); ?>">
  <meta name="description" content="<?php echo e(Theme::get('description')); ?>">
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> 
  <?php echo Theme::asset()->styles(); ?>

  <?php echo Theme::asset()->container('post-styles')->styles(); ?>

  <?php echo Theme::asset()->scripts(); ?>

  <!--[if lt IE 9]>
    <?php echo Theme::asset()->container('ie9')->scripts(); ?>

  <![endif]-->
</head>
<body>
  <section class="vbox">
    <?php echo Theme::partial('header'); ?>

    <section>
      <section class="hbox stretch">
        <?php echo Theme::partial('menu'); ?>

        <section id="content">
          <section class="vbox">          
            <section class="scrollable padder">
              <ul class="breadcrumb no-border no-radius b-b b-light pull-in">
                <li><a href="<?php echo e(route('_home')); ?>"><i class="fa fa-home"></i> Home</a></li>
                <?php
                $exs = explode('/', Route::current()->getPath());
                foreach ($exs as $x) {
                  if(strlen($x) > 0 && strpos($x, '{') === false) {
                ?>
                <li class="active">
                  <a href="<?php echo e(route(Route::current()->getName())); ?>">
                  <?php echo e(ucwords($x)); ?>

                  </a>
                </li>
                <?php }} ?>
              </ul>
              <?php echo Theme::content(); ?>

            </section>
          </section>
          <a href="#" class="hide nav-off-screen-block" data-toggle="class:nav-off-screen" data-target="#nav"></a>
        </section>
      </section>
    </section>
  </section>
  <?php echo Theme::asset()->container('core-scripts')->scripts(); ?>

  <?php echo Theme::asset()->container('post-scripts')->scripts(); ?>


</body>
</html>