22 lines
610 B
PHP
22 lines
610 B
PHP
{{-- page.blade.php --}}
|
|
<!DOCTYPE html>
|
|
<html lang="{{ app()->getLocale() }}">
|
|
<head>
|
|
@include('vuexy-website-layout-porto::partials.seo-head')
|
|
@include('vuexy-website-layout-porto::partials.styles')
|
|
</head>
|
|
<body>
|
|
<div class="body">
|
|
@includeIf("vuexy-website-layout-porto::components.{$_layout['template_variant']}.header")
|
|
|
|
<main class="main">
|
|
@yield('content')
|
|
</main>
|
|
|
|
@includeIf("vuexy-website-layout-porto::components.{$_layout['template_variant']}.footer")
|
|
</div>
|
|
|
|
@include('vuexy-website-layout-porto::partials.scripts')
|
|
</body>
|
|
</html>
|