]> BookStack Code Mirror - bookstack/blob - resources/views/pages/export.blade.php
Merge pull request #3 from BookStackApp/master
[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                 @include('partials.entity-meta', ['entity' => $page])
23
24             </div>
25         </div>
26     </div>
27 </div>
28 </body>
29 </html>