printHtmlAttributes('html') !!} {{ theme()->printHtmlClasses('html') }}>
{{-- begin::Head --}}
{{ ucfirst(theme()->getOption('meta', 'title')) }} | @yield('title')
{{-- begin::Fonts --}}
{{ theme()->includeFonts() }}
{{-- end::Fonts --}}
@if (theme()->hasOption('page', 'assets/vendors/css'))
{{-- begin::Page Vendor Stylesheets(used by this page) --}}
@foreach (theme()->getOption('page', 'assets/vendors/css') as $file)
@endforeach
{{-- end::Page Vendor Stylesheets --}}
@endif
@if (theme()->hasOption('page', 'assets/custom/css'))
{{-- begin::Page Custom Stylesheets(used by this page) --}}
@foreach (theme()->getOption('page', 'assets/custom/css') as $file)
@endforeach
{{-- end::Page Custom Stylesheets --}}
@endif
@if (theme()->hasOption('assets', 'css'))
{{-- begin::Global Stylesheets Bundle(used by all pages) --}}
@foreach (theme()->getOption('assets', 'css') as $file)
@endforeach
{{-- end::Global Stylesheets Bundle --}}
@endif
@if (theme()->getMode() === 'preview')
{{ theme()->getView('partials/trackers/_ga-general') }}
{{ theme()->getView('partials/trackers/_ga-tag-manager-for-head') }}
@endif
@yield('styles')
@stack('styles')
{{-- end::Head --}}
{{-- begin::Body --}}
printHtmlAttributes('body') !!} {!! theme()->printHtmlClasses('body') !!} {!! theme()->printCssVariables('body') !!}>
@if (theme()->getOption('layout', 'loader/display') === true)
{{ theme()->getView('layout/_loader') }}
@endif
@yield('content')
{{-- begin::Javascript --}}
@if (theme()->hasOption('assets', 'js'))
{{-- begin::Global Javascript Bundle(used by all pages) --}}
@foreach (theme()->getOption('assets', 'js') as $file)
@endforeach
{{-- end::Global Javascript Bundle --}}
@endif
@if (theme()->hasOption('page', 'assets/vendors/js'))
{{-- begin::Page Vendors Javascript(used by this page) --}}
@foreach (theme()->getOption('page', 'assets/vendors/js') as $file)
@endforeach
{{-- end::Page Vendors Javascript --}}
@endif
@if (theme()->hasOption('page', 'assets/custom/js'))
{{-- begin::Page Custom Javascript(used by this page) --}}
@foreach (theme()->getOption('page', 'assets/custom/js') as $file)
@endforeach
{{-- end::Page Custom Javascript --}}
@endif
{{-- end::Javascript --}}
@if (theme()->getMode() === 'preview')
{{ theme()->getView('partials/trackers/_ga-tag-manager-for-body') }}
@endif
@yield('scripts')
@stack('scripts')
{{-- end::Body --}}