1 <div component="editor-toolbox" class="floating-toolbox">
3 <div class="tabs flex-container-column justify-flex-start">
4 <div class="tabs-inner flex-container-column justify-center">
5 <button type="button" refs="editor-toolbox@toggle" title="{{ trans('entities.toggle_sidebar') }}" aria-expanded="false" class="toolbox-toggle">@icon('caret-left-circle')</button>
6 <button type="button" refs="editor-toolbox@tab-button" data-tab="tags" title="{{ trans('entities.page_tags') }}" class="active">@icon('tag')</button>
7 @if(userCan('attachment-create-all'))
8 <button type="button" refs="editor-toolbox@tab-button" data-tab="files" title="{{ trans('entities.attachments') }}">@icon('attach')</button>
10 <button type="button" refs="editor-toolbox@tab-button" data-tab="templates" title="{{ trans('entities.templates') }}">@icon('template')</button>
11 @if($comments->enabled())
12 <button type="button" refs="editor-toolbox@tab-button" data-tab="comments" title="{{ trans('entities.comments') }}">@icon('comment')</button>
17 <div refs="editor-toolbox@tab-content" data-tab-content="tags" class="toolbox-tab-content">
18 <h4>{{ trans('entities.page_tags') }}</h4>
20 @include('entities.tag-manager', ['entity' => $page])
24 @if(userCan('attachment-create-all'))
25 @include('attachments.manager', ['page' => $page])
28 <div refs="editor-toolbox@tab-content" data-tab-content="templates" class="toolbox-tab-content">
29 <h4>{{ trans('entities.templates') }}</h4>
32 @include('pages.parts.template-manager', ['page' => $page, 'templates' => $templates])
36 @if($comments->enabled())
37 @include('pages.parts.toolbox-comments')