Added custom head content into public pages

Closes #211
This commit is contained in:
Dan Brown 2016-10-30 11:44:31 +00:00
parent 8b43b91057
commit c4eed37d8e
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9
3 changed files with 7 additions and 1 deletions

View File

@ -9,6 +9,7 @@ return [
'app-editor' => 'wysiwyg', 'app-editor' => 'wysiwyg',
'app-color' => '#0288D1', 'app-color' => '#0288D1',
'app-color-light' => 'rgba(21, 101, 192, 0.15)', 'app-color-light' => 'rgba(21, 101, 192, 0.15)',
'app-custom-head' => false,
'registration-enabled' => false, 'registration-enabled' => false,
]; ];

View File

@ -23,7 +23,7 @@
@include('partials/custom-styles') @include('partials/custom-styles')
<!-- Custom user content --> <!-- Custom user content -->
@if(setting('app-custom-head', false)) @if(setting('app-custom-head'))
{!! setting('app-custom-head') !!} {!! setting('app-custom-head') !!}
@endif @endif
</head> </head>

View File

@ -17,6 +17,11 @@
<!-- Scripts --> <!-- Scripts -->
<script src="{{ baseUrl("/libs/jquery/jquery.min.js?version=2.1.4") }}"></script> <script src="{{ baseUrl("/libs/jquery/jquery.min.js?version=2.1.4") }}"></script>
@include('partials/custom-styles') @include('partials/custom-styles')
<!-- Custom user content -->
@if(setting('app-custom-head'))
{!! setting('app-custom-head') !!}
@endif
</head> </head>
<body class="@yield('body-class')" ng-app="bookStack"> <body class="@yield('body-class')" ng-app="bookStack">