@php
$themeManager = app(\App\Domain\Theme\ThemeManager::class);
$activeTheme = $themeManager->active();
$stylevars = \App\Models\Stylevar::query()->visible()->orderBy('id')->get();
@endphp
{{ $seo['title'] ?? ($settings->site_name ?? config('app.name')) }}
@if(!empty($seo['canonical']))
@endif
@if(!empty($seo['description']))
@endif
@foreach(($seo['og'] ?? []) as $property => $content)
@endforeach
@foreach(($seo['twitter'] ?? []) as $name => $content)
@endforeach
@if(!empty($seo['jsonld']))
@endif
@stack('head')
@themeslot('head')
@themeslot('body_start')
@themeslot('header_after')
@themeslot('content_before')
@yield('content')
@themeslot('content_after')
@themeslot('footer_before')
@themeslot('footer_after')
@themeslot('body_end')