@php $general = $options->theme->general; @endphp @extends($_lib.'layout') @include($_template.'general-settings') @section('body') @if ($general->show_preloader) @include($_template.'preloader') @endif @include($_template.'offcanvas') @include($_template.'panels') @include($_template.'header')
@php $show_breadcrumb = $__env->yieldContent('breadcrumb.show', $__env->yieldContent('show_breadcrumb', true)); if ($show_breadcrumb && $show_breadcrumb != false && $show_breadcrumb != 'false' && $show_breadcrumb != 'no') { $show_breadcrumb = true; } else { $show_breadcrumb = false; } $breadcrumb_title = $__env->yieldContent('breadcrumb.title', $__env->yieldContent('breadcrumb_title')); $sidebar = $__env->yieldContent('sidebar'); if (!in_array($sidebar, ['post', 'product', 'default'])) { $sidebar = 'default'; } @endphp @if ($show_breadcrumb) @include($_template . 'breadcrumb', ['title' => $breadcrumb_title]) @endif @yield('content')
@include($_template.'footer') @include($_template.'js') @endsection