bookstack/resources/views/common/export-custom-head.blade.php

7 lines
209 B
PHP

@inject('headContent', 'BookStack\Theming\CustomHtmlHeadContentProvider')
@if(setting('app-custom-head'))
<!-- Custom user content -->
{!! $headContent->forExport() !!}
<!-- End custom user content -->
@endif