]> BookStack Code Mirror - bookstack/blob - resources/views/pages/pdf.blade.php
Added page HTML export
[bookstack] / resources / views / pages / pdf.blade.php
1 <!doctype html>
2 <html lang="en">
3 <head>
4     <meta charset="UTF-8">
5     <title>{{ $page->name }}</title>
6
7     <style>
8         {!! $css !!}
9     </style>
10 </head>
11 <body>
12 <div class="container" id="page-show" ng-non-bindable>
13     <div class="row">
14         <div class="col-md-8 col-md-offset-2">
15             <div class="page-content">
16
17                 @include('pages/page-display')
18
19                 <hr>
20
21                 <p class="text-muted small">
22                     Created {{$page->created_at->diffForHumans()}} @if($page->createdBy) by {{$page->createdBy->name}} @endif
23                     <br>
24                     Last Updated {{$page->updated_at->diffForHumans()}} @if($page->updatedBy) by {{$page->updatedBy->name}} @endif
25                 </p>
26
27             </div>
28         </div>
29     </div>
30 </div>
31 </body>
32 </html>