2025-05-30 03:09:08 -06:00

22 lines
756 B
PHP

<!DOCTYPE html>
<html lang="{{ session()->get('locale') ?? app()->getLocale() }}"
data-base-url="{{ url('/') . '/' }}"
data-template="{{ $_layout['template'] }}"
prefix="og: http://ogp.me/ns#">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no">
@include('vuexy-website-admin::layouts.base.header')
@include('vuexy-website-layout-porto::layouts.porto.partials.styles')
</head>
<body data-plugin-page-transition>
<div class="body">
@yield('header')
<div role="main" class="main">
@yield('content')
</div>
@yield('footer')
</div>
@include('vuexy-website-layout-porto::layouts.porto.partials.scripts')
</body>
</html>