]> BookStack Code Mirror - bookstack/blobdiff - resources/views/pages/export.blade.php
Updated attachment links to have dropdown for open type
[bookstack] / resources / views / pages / export.blade.php
index 4746a56f37842a5f54dfe13cc1c4a1a4d6586b96..d2f448d6e889bd430f3ce53852530d8411c2945c 100644 (file)
@@ -1,32 +1,13 @@
-<!doctype html>
-<html lang="{{ config('app.lang') }}">
-<head>
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <title>{{ $page->name }}</title>
+@extends('layouts.export')
 
-    <style>
-        @if (!app()->environment('testing'))
-        {!! file_get_contents(public_path('/dist/export-styles.css')) !!}
-        @endif
-    </style>
-    @yield('head')
-    @include('partials.custom-head')
-</head>
-<body>
+@section('title', $page->name)
 
-<div id="page-show">
-    <div class="page-content">
+@section('content')
+    @include('pages.parts.page-display')
 
-        @include('pages.page-display')
-
-        <hr>
-
-        <div class="text-muted text-small">
-            @include('partials.entity-export-meta', ['entity' => $page])
-        </div>
+    <hr>
 
+    <div class="text-muted text-small">
+        @include('entities.export-meta', ['entity' => $page])
     </div>
-</div>
-
-</body>
-</html>
+@endsection
\ No newline at end of file