2021-05-05 00:15:05 +02: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 15:27:41 +01:00
|
|
|
@if($cspContent ?? false)
|
|
|
|
<meta http-equiv="Content-Security-Policy" content="{{ $cspContent }}">
|
|
|
|
@endif
|
|
|
|
|
2022-01-24 18:24:00 +01:00
|
|
|
@include('common.export-styles', ['format' => $format, 'engine' => $engine ?? ''])
|
2021-08-22 14:15:58 +02:00
|
|
|
@include('common.export-custom-head')
|
2021-05-05 00:15:05 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="page-content">
|
|
|
|
@yield('content')
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|