X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/43d9d2eba76528dc1bcaccb6896b110faa920cff..refs/pull/325/head:/resources/views/base.blade.php diff --git a/resources/views/base.blade.php b/resources/views/base.blade.php index be47abdca..a98a37131 100644 --- a/resources/views/base.blade.php +++ b/resources/views/base.blade.php @@ -17,13 +17,14 @@ + @yield('head') @include('partials/custom-styles') - @if(setting('app-custom-head', false)) + @if(setting('app-custom-head')) {!! setting('app-custom-head') !!} @endif @@ -39,7 +40,9 @@ @if(setting('app-logo', '') !== 'none') Logo @endif - {{ setting('app-name') }} + @if (setting('app-name-header')) + {{ setting('app-name') }} + @endif
@@ -51,32 +54,16 @@
- @if(isset($signedIn) && $signedIn) - + @if(signedInUser()) + @include('partials._header-dropdown', ['currentUser' => user()]) @endif
@@ -91,7 +78,7 @@
- Back to top + {{ trans('common.back_to_top') }}
@yield('bottom')