]> BookStack Code Mirror - bookstack/blob - resources/views/pages/export.blade.php
Update errors.php
[bookstack] / resources / views / pages / 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>{{ $page->name }}</title>
6
7     <style>
8         @if (!app()->environment('testing'))
9         {!! file_get_contents(public_path('/dist/export-styles.css')) !!}
10         @endif
11     </style>
12     @yield('head')
13     @include('partials.custom-head')
14 </head>
15 <body>
16
17 <div id="page-show">
18     <div class="page-content">
19
20         @include('pages.page-display')
21
22         <hr>
23
24         <div class="text-muted text-small">
25             @include('partials.entity-export-meta', ['entity' => $page])
26         </div>
27
28     </div>
29 </div>
30
31 </body>
32 </html>