mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
Added convenience theme system partials for export layouts
To allow easier additions to start/end of body tag in export formats.
This commit is contained in:
parent
45dc28ba2a
commit
06b5a83d8f
@ -12,8 +12,10 @@
|
|||||||
@include('exports.parts.custom-head')
|
@include('exports.parts.custom-head')
|
||||||
</head>
|
</head>
|
||||||
<body class="export export-format-{{ $format }} export-engine-{{ $engine ?? 'none' }}">
|
<body class="export export-format-{{ $format }} export-engine-{{ $engine ?? 'none' }}">
|
||||||
|
@include('layouts.parts.export-body-start')
|
||||||
<div class="page-content">
|
<div class="page-content">
|
||||||
@yield('content')
|
@yield('content')
|
||||||
</div>
|
</div>
|
||||||
|
@include('layouts.parts.export-body-end')
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
2
resources/views/layouts/parts/export-body-end.blade.php
Normal file
2
resources/views/layouts/parts/export-body-end.blade.php
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
{{-- This is a placeholder template file provided as a --}}
|
||||||
|
{{-- convenience to users of the visual theme system. --}}
|
@ -0,0 +1,2 @@
|
|||||||
|
{{-- This is a placeholder template file provided as a --}}
|
||||||
|
{{-- convenience to users of the visual theme system. --}}
|
Loading…
Reference in New Issue
Block a user