X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/5bf811a4883423714bd78a1421821f9baa721230..refs/pull/360/head:/resources/views/base.blade.php diff --git a/resources/views/base.blade.php b/resources/views/base.blade.php index 25559bd40..4287014c2 100644 --- a/resources/views/base.blade.php +++ b/resources/views/base.blade.php @@ -1,22 +1,33 @@ - + - {{ isset($pageTitle) ? $pageTitle . ' | ' : '' }}{{ Setting::get('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 @@ -26,15 +37,17 @@
- @@ -42,29 +55,16 @@
- @if($signedIn) - + @if(signedInUser()) + @include('partials._header-dropdown', ['currentUser' => user()]) @endif
@@ -77,6 +77,11 @@ @yield('content') +
+
+ {{ trans('common.back_to_top') }} +
+
@yield('bottom') @yield('scripts')