1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Added support for custom content in HTML head

This commit is contained in:
Dan Brown
2016-05-22 11:01:21 +01:00
parent be517de7dc
commit bd00a03e7b
3 changed files with 17 additions and 3 deletions

View File

@ -20,6 +20,11 @@
@yield('head')
@include('partials/custom-styles')
<!-- Custom user content -->
@if(setting('app-custom-head', false))
{!! setting('app-custom-head') !!}
@endif
</head>
<body class="@yield('body-class')" ng-app="bookStack">