]> BookStack Code Mirror - bookstack/blob - resources/views/layouts/export.blade.php
Opensearch: Fixed XML declaration when php short tags enabled
[bookstack] / resources / views / layouts / export.blade.php
1 <!doctype html>
2 <html lang="{{ $locale->htmlLang() }}">
3 <head>
4     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
5     <title>@yield('title')</title>
6
7     @if($cspContent ?? false)
8         <meta http-equiv="Content-Security-Policy" content="{{ $cspContent }}">
9     @endif
10
11     @include('exports.parts.styles', ['format' => $format, 'engine' => $engine ?? ''])
12     @include('exports.parts.custom-head')
13 </head>
14 <body class="export export-format-{{ $format }} export-engine-{{ $engine ?? 'none' }}">
15 @include('layouts.parts.export-body-start')
16 <div class="page-content" dir="auto">
17     @yield('content')
18 </div>
19 @include('layouts.parts.export-body-end')
20 </body>
21 </html>