]> BookStack Code Mirror - bookstack/blob - resources/views/pages/export.blade.php
Found the source of the issue, not sure how to fix
[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         {!! $css !!}
9     </style>
10     @yield('head')
11 </head>
12 <body>
13 <div class="container" id="page-show">
14     <div class="row">
15         <div class="col-md-8 col-md-offset-2">
16             <div class="page-content">
17
18                 @include('pages/page-display')
19
20                 <hr>
21
22                 <p class="text-muted small">
23                     Created {{$page->created_at->toDayDateTimeString()}} @if($page->createdBy) by {{$page->createdBy->name}} @endif
24                     <br>
25                     Last Updated {{$page->updated_at->toDayDateTimeString()}} @if($page->updatedBy) by {{$page->updatedBy->name}} @endif
26                 </p>
27
28             </div>
29         </div>
30     </div>
31 </div>
32 </body>
33 </html>