]> BookStack Code Mirror - bookstack/blob - resources/views/layouts/export.blade.php
Updated attachment links to have dropdown for open type
[bookstack] / resources / views / layouts / export.blade.php
1 <!doctype html>
2 <html lang="{{ config('app.lang') }}">
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('common.export-styles', ['format' => $format, 'engine' => $engine ?? ''])
12     @include('common.export-custom-head')
13 </head>
14 <body>
15 <div class="page-content">
16     @yield('content')
17 </div>
18 </body>
19 </html>