mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-31 21:23:38 +08:00
Standardised export views with base layout, Reduced included export styles
Related to #2666
This commit is contained in:
15
resources/views/export-layout.blade.php
Normal file
15
resources/views/export-layout.blade.php
Normal file
@ -0,0 +1,15 @@
|
||||
<!doctype html>
|
||||
<html lang="{{ config('app.lang') }}">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<title>@yield('title')</title>
|
||||
|
||||
@include('partials.export-styles', ['format' => $format])
|
||||
@include('partials.export-custom-head')
|
||||
</head>
|
||||
<body>
|
||||
<div class="page-content">
|
||||
@yield('content')
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user