X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/0b364fd72f994e6dff572a1606f3aa26e7690aa1..refs/pull/358/head:/resources/views/base.blade.php diff --git a/resources/views/base.blade.php b/resources/views/base.blade.php index 34c64c581..4287014c2 100644 --- a/resources/views/base.blade.php +++ b/resources/views/base.blade.php @@ -1,25 +1,33 @@ - {{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name', 'BookStack') }} + {{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ setting('app-name') }} + - + - - + + + @yield('head') @include('partials/custom-styles') + + @if(setting('app-custom-head') && \Route::currentRouteName() !== 'settings') + + {!! setting('app-custom-head') !!} + + @endif @@ -29,15 +37,17 @@
- @@ -45,32 +55,16 @@
- @if(isset($signedIn) && $signedIn) - + @if(signedInUser()) + @include('partials._header-dropdown', ['currentUser' => user()]) @endif
@@ -85,7 +79,7 @@
- Back to top + {{ trans('common.back_to_top') }}
@yield('bottom')