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-01-24 12:24:00 -05:00
|
|
|
@include('common.export-styles', ['format' => $format, 'engine' => $engine ?? ''])
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('common.export-custom-head')
|
2021-05-04 18:15:05 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="page-content">
|
|
|
|
@yield('content')
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|