]> BookStack Code Mirror - bookstack/blob - resources/views/pages/export.blade.php
Updated assets and version for release v0.18.4
[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('/css/export-styles.css')) !!}
10         @endif
11     </style>
12     @yield('head')
13 </head>
14 <body>
15 <div class="container" id="page-show">
16     <div class="row">
17         <div class="col-md-8 col-md-offset-2">
18             <div class="page-content">
19
20                 @include('pages.page-display')
21
22                 <hr>
23
24                 @include('partials.entity-meta', ['entity' => $page])
25
26             </div>
27         </div>
28     </div>
29 </div>
30 </body>
31 </html>