2021-05-04 18:15:05 -04:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="{{ config('app.lang') }}">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
|
|
<title>@yield('title')</title>
|
|
|
|
|
2022-03-07 09:27:41 -05:00
|
|
|
@if($cspContent ?? false)
|
|
|
|
<meta http-equiv="Content-Security-Policy" content="{{ $cspContent }}">
|
|
|
|
@endif
|
|
|
|
|
2022-06-08 12:56:59 -04:00
|
|
|
@include('exports.parts.styles', ['format' => $format, 'engine' => $engine ?? ''])
|
|
|
|
@include('exports.parts.custom-head')
|
2021-05-04 18:15:05 -04:00
|
|
|
</head>
|
2022-06-08 12:56:59 -04:00
|
|
|
<body class="export export-format-{{ $format }} export-engine-{{ $engine ?? 'none' }}">
|
2022-08-09 08:46:52 -04:00
|
|
|
@include('layouts.parts.export-body-start')
|
2021-05-04 18:15:05 -04:00
|
|
|
<div class="page-content">
|
|
|
|
@yield('content')
|
|
|
|
</div>
|
2022-08-09 08:46:52 -04:00
|
|
|
@include('layouts.parts.export-body-end')
|
2021-05-04 18:15:05 -04:00
|
|
|
</body>
|
|
|
|
</html>
|