]> BookStack Code Mirror - bookstack/blob - resources/views/pages/export.blade.php
ca708f8e0c99e17bd9854ba5201c52bd75c46597
[bookstack] / resources / views / pages / export.blade.php
1 <!doctype html>
2 <html lang="en">
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 <div class="container" id="page-show">
17     <div class="row">
18         <div class="col-md-8 col-md-offset-2">
19             <div class="page-content">
20
21                 @include('pages.page-display')
22
23                 <hr>
24
25                 <div class="text-muted text-small">
26                     @include('partials.entity-meta', ['entity' => $page])
27                 </div>
28
29             </div>
30         </div>
31     </div>
32 </div>
33 </body>
34 </html>