]> BookStack Code Mirror - bookstack/blob - resources/views/pages/export.blade.php
8ed5b391ab8e8aa42dcc83c43395b911a8ee9387
[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 </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                 <div class="text-muted text-small">
25                     @include('partials.entity-meta', ['entity' => $page])
26                 </div>
27
28             </div>
29         </div>
30     </div>
31 </div>
32 </body>
33 </html>