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
3 changed files with 6 additions and 0 deletions
|
@ -12,8 +12,10 @@
|
|||
@include('exports.parts.custom-head')
|
||||
</head>
|
||||
<body class="export export-format-{{ $format }} export-engine-{{ $engine ?? 'none' }}">
|
||||
@include('layouts.parts.export-body-start')
|
||||
<div class="page-content">
|
||||
@yield('content')
|
||||
</div>
|
||||
@include('layouts.parts.export-body-end')
|
||||
</body>
|
||||
</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 a new issue