vsmov-core/resources/views/themes/layout.blade.php
Clemencia John 68260d170a vsmov 1.0.0
2026-04-15 21:11:19 -07:00

26 lines
829 B
PHP

<!DOCTYPE html>
<html lang="{{ config('app.locale') }}">
<head>
{!! setting('site_meta_head_tags', '') !!}
<meta http-equiv="content-language" content="{{ config('app.locale') }}" />
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta property="fb:app_id" content="{{ setting('social_facebook_app_id') }}" />
<link rel="shortcut icon" href="{{ setting('site_meta_shortcut_icon') }}" type="image/png" />
{!! SEO::generate() !!}
@stack('header')
{!! get_theme_option('additional_css') !!}
{!! get_theme_option('additional_header_js') !!}
</head>
<body {!! get_theme_option('body_attributes', '') !!}>
@yield('body')
{!! get_theme_option('additional_body_js') !!}
@yield('footer')
@stack('scripts')
{!! get_theme_option('additional_footer_js') !!}
</body>
</html>