mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
06b5a83d8f
To allow easier additions to start/end of body tag in export formats.
21 lines
675 B
PHP
21 lines
675 B
PHP
<!doctype html>
|
|
<html lang="{{ config('app.lang') }}">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title>@yield('title')</title>
|
|
|
|
@if($cspContent ?? false)
|
|
<meta http-equiv="Content-Security-Policy" content="{{ $cspContent }}">
|
|
@endif
|
|
|
|
@include('exports.parts.styles', ['format' => $format, 'engine' => $engine ?? ''])
|
|
@include('exports.parts.custom-head')
|
|
</head>
|
|
<body class="export export-format-{{ $format }} export-engine-{{ $engine ?? 'none' }}">
|
|
@include('layouts.parts.export-body-start')
|
|
<div class="page-content">
|
|
@yield('content')
|
|
</div>
|
|
@include('layouts.parts.export-body-end')
|
|
</body>
|
|
</html> |