diff --git a/resources/views/layouts/export.blade.php b/resources/views/layouts/export.blade.php index d631ad3c9..e041d8dea 100644 --- a/resources/views/layouts/export.blade.php +++ b/resources/views/layouts/export.blade.php @@ -12,8 +12,10 @@ @include('exports.parts.custom-head') +@include('layouts.parts.export-body-start')
@yield('content')
+@include('layouts.parts.export-body-end') \ No newline at end of file diff --git a/resources/views/layouts/parts/export-body-end.blade.php b/resources/views/layouts/parts/export-body-end.blade.php new file mode 100644 index 000000000..471198979 --- /dev/null +++ b/resources/views/layouts/parts/export-body-end.blade.php @@ -0,0 +1,2 @@ +{{-- This is a placeholder template file provided as a --}} +{{-- convenience to users of the visual theme system. --}} \ No newline at end of file diff --git a/resources/views/layouts/parts/export-body-start.blade.php b/resources/views/layouts/parts/export-body-start.blade.php new file mode 100644 index 000000000..471198979 --- /dev/null +++ b/resources/views/layouts/parts/export-body-start.blade.php @@ -0,0 +1,2 @@ +{{-- This is a placeholder template file provided as a --}} +{{-- convenience to users of the visual theme system. --}} \ No newline at end of file