@yield('head') @include('partials/custom-styles') @include('partials.custom-head')
@include('partials/notifications')
@if(setting('app-logo', '') !== 'none')
@endif @if (setting('app-name-header'))
{{ setting('app-name') }}
@endif
@icon('search')
@if(userCanOnAny('view', \BookStack\Entities\Bookshelf::class) || userCan('bookshelf-view-own'))
@icon('bookshelf'){{ trans('entities.shelves') }}
@endif
@icon('book'){{ trans('entities.books') }}
@if(signedInUser() && userCan('settings-manage'))
@icon('settings'){{ trans('settings.settings') }}
@endif @if(signedInUser() && userCan('users-manage') && !userCan('settings-manage'))
@icon('users'){{ trans('settings.users') }}
@endif @if(!signedInUser()) @if(setting('registration-enabled', false))
@icon('new-user') {{ trans('auth.sign_up') }}
@endif
@icon('login') {{ trans('auth.log_in') }}
@endif
@if(signedInUser()) @include('partials._header-dropdown', ['currentUser' => user()]) @endif
@yield('content')
@icon('chevron-up')
{{ trans('common.back_to_top') }}
@yield('bottom') @yield('scripts')