@if ($current_locale == 'pt-br')
@endif
@if (isset($page->meta_tag) && isset($page->meta_description))
{{ $page->title }} - {{ $gs->title }}
@elseif(isset($blog_meta_tag))
{{-- BLOG --}}
{{ $blog_title }} - {{ $gs->title }}
@elseif(isset($cat))
{{-- CATEGORY --}}
{{ ucfirst($cat->name) }} - {{ $gs->title }}
@if (stripos(strtolower($cat->photo), 'noimage.png'))
@else
@endif
@elseif(isset($brand) && !isset($brands))
{{-- BRAND --}}
{{ $brand->name }} - {{ $gs->title }}
@elseif(isset($productt))
{{-- PRODUCT --}}
@if (stripos(strtolower($productt->thumbnail), 'noimage.png'))
@else
@endif
{{ $productt->name }}
@elseif(request()->is('privacy-policy'))
{{ __('Privacy Policy') }} - {{ $gs->title }}
@elseif(request()->is('terms-of-service'))
{{ __('General Terms of Service') }} - {{ $gs->title }}
@elseif(request()->is('vendor-terms-of-service'))
{{ __('Seller Terms of Service') }} - {{ $gs->title }}
@elseif(request()->is('policy'))
{{ __('Buy & Return Policy') }} - {{ $gs->title }}
@else
{{ $gs->title }}
@endif
{!! $seo->tag_manager_head !!}
@if ($slocale->rtl == '1')
@else
@endif
@yield('styles')
{!! $seo->tag_manager_body !!}
@include('front.themes.shared.components.preloader')
@include('front.themes.shared.components.popup')
@yield('before-header')
@includeFirst([
'front.themes.' . env('THEME', 'theme-01') . '.components.header',
'front.themes.shared.components.header',
])
@yield('after-header')
@yield('content')
@yield('before-footer')
@includeFirst([
'front.themes.' . env('THEME', 'theme-01') . '.components.footer',
'front.themes.shared.components.footer',
])
@yield('after-footer')
@include('front.themes.shared.components.footer-go-top-button')
@include('front.themes.shared.components.modal-login')
@include('front.themes.shared.components.modal-forgot')
@include('front.themes.shared.components.modal-vendor')
@include('front.themes.shared.components.modal-product-quickview')
@include('front.themes.shared.components.modal-order-tracking')
@if ($gs->privacy_policy)
@include('front.themes.shared.components.cookie-alert')
@endif
@php
$current_locale = strtolower(str_replace('-', '_', str_replace('admin_', '', App::getLocale())));
@endphp
{!! $seo->google_analytics !!}
{!! $seo->facebook_pixel !!}
@if ($gs->is_talkto == 1)
{!! $gs->talkto !!}
@endif
@if ($gs->is_jivochat == 1)
{!! $gs->jivochat !!}
@endif
@yield('scripts')
@include('front.themes.shared.components.footer-whatsapp-button')
@include('front.themes.shared.components.modal-simplified-checkout')
@include('front.themes.shared.components.modal-loading-spinner')