2021-08-22 08:15:58 -04:00
|
|
|
@extends('layouts.tri')
|
2019-01-13 10:54:55 -05:00
|
|
|
|
2020-12-22 00:20:13 -05:00
|
|
|
@push('social-meta')
|
2021-02-09 01:16:24 -05:00
|
|
|
<meta property="og:description" content="{{ Str::limit($page->text, 100, '...') }}">
|
2020-12-22 00:20:13 -05:00
|
|
|
@endpush
|
|
|
|
|
2022-07-23 13:29:04 -04:00
|
|
|
@include('entities.body-tag-classes', ['entity' => $page])
|
|
|
|
|
2019-01-13 10:54:55 -05:00
|
|
|
@section('body')
|
|
|
|
|
2019-08-25 06:30:26 -04:00
|
|
|
<div class="mb-m print-hidden">
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.breadcrumbs', ['crumbs' => [
|
2019-02-17 12:52:42 -05:00
|
|
|
$page->book,
|
|
|
|
$page->hasChapter() ? $page->chapter : null,
|
|
|
|
$page,
|
|
|
|
]])
|
2019-01-13 10:54:55 -05:00
|
|
|
</div>
|
|
|
|
|
2019-08-25 10:44:51 -04:00
|
|
|
<main class="content-wrap card">
|
2022-11-15 11:04:46 -05:00
|
|
|
<div component="page-display"
|
|
|
|
option:page-display:page-id="{{ $page->id }}"
|
|
|
|
class="page-content clearfix">
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('pages.parts.page-display')
|
2019-01-13 10:54:55 -05:00
|
|
|
</div>
|
2022-10-18 17:40:13 -04:00
|
|
|
@include('pages.parts.pointer', ['page' => $page])
|
2019-08-25 10:44:51 -04:00
|
|
|
</main>
|
2021-05-29 07:39:41 -04:00
|
|
|
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.sibling-navigation', ['next' => $next, 'previous' => $previous])
|
2019-01-13 10:54:55 -05:00
|
|
|
|
|
|
|
@if ($commentsEnabled)
|
2021-05-29 07:39:41 -04:00
|
|
|
@if(($previous || $next))
|
|
|
|
<div class="px-xl">
|
|
|
|
<hr class="darker">
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<div class="px-xl comments-container mb-l print-hidden">
|
2019-01-13 10:54:55 -05:00
|
|
|
@include('comments.comments', ['page' => $page])
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@stop
|
2015-07-12 16:31:15 -04:00
|
|
|
|
2018-12-09 11:51:31 -05:00
|
|
|
@section('left')
|
2015-10-10 13:57:52 -04:00
|
|
|
|
2017-08-26 10:41:33 -04:00
|
|
|
@if($page->tags->count() > 0)
|
2018-04-30 09:35:15 -04:00
|
|
|
<section>
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.tag-list', ['entity' => $page])
|
2018-04-30 09:35:15 -04:00
|
|
|
</section>
|
2017-08-26 10:41:33 -04:00
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($page->attachments->count() > 0)
|
2019-03-30 11:15:01 -04:00
|
|
|
<div id="page-attachments" class="mb-l">
|
2018-12-09 11:51:31 -05:00
|
|
|
<h5>{{ trans('entities.pages_attachments') }}</h5>
|
2017-08-26 10:41:33 -04:00
|
|
|
<div class="body">
|
2020-07-04 11:53:02 -04:00
|
|
|
@include('attachments.list', ['attachments' => $page->attachments])
|
2017-08-26 10:41:33 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (isset($pageNav) && count($pageNav))
|
2019-08-25 10:44:51 -04:00
|
|
|
<nav id="page-navigation" class="mb-xl" aria-label="{{ trans('entities.pages_navigation') }}">
|
2018-12-09 11:51:31 -05:00
|
|
|
<h5>{{ trans('entities.pages_navigation') }}</h5>
|
2017-08-26 10:41:33 -04:00
|
|
|
<div class="body">
|
|
|
|
<div class="sidebar-page-nav menu">
|
|
|
|
@foreach($pageNav as $navItem)
|
|
|
|
<li class="page-nav-item h{{ $navItem['level'] }}">
|
2020-12-18 16:26:22 -05:00
|
|
|
<a href="{{ $navItem['link'] }}" class="text-limit-lines-1 block">{{ $navItem['text'] }}</a>
|
2023-01-28 11:06:11 -05:00
|
|
|
<div class="link-background sidebar-page-nav-bullet"></div>
|
2017-08-26 10:41:33 -04:00
|
|
|
</li>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-08-25 10:44:51 -04:00
|
|
|
</nav>
|
2017-08-26 10:41:33 -04:00
|
|
|
@endif
|
|
|
|
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.book-tree', ['book' => $book, 'sidebarTree' => $sidebarTree])
|
2019-03-30 11:15:01 -04:00
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('right')
|
2018-12-09 11:51:31 -05:00
|
|
|
<div id="page-details" class="entity-details mb-xl">
|
|
|
|
<h5>{{ trans('common.details') }}</h5>
|
2022-05-13 13:03:43 -04:00
|
|
|
<div class="blended-links">
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.meta', ['entity' => $page])
|
2018-04-30 08:53:04 -04:00
|
|
|
|
2022-10-10 11:22:51 -04:00
|
|
|
@if($book->hasPermissions())
|
2018-04-30 08:53:04 -04:00
|
|
|
<div class="active-restriction">
|
|
|
|
@if(userCan('restrictions-manage', $book))
|
2022-05-13 13:03:43 -04:00
|
|
|
<a href="{{ $book->getUrl('/permissions') }}" class="entity-meta-item">
|
|
|
|
@icon('lock')
|
|
|
|
<div>{{ trans('entities.books_permissions_active') }}</div>
|
|
|
|
</a>
|
2018-04-30 08:53:04 -04:00
|
|
|
@else
|
2022-05-13 13:03:43 -04:00
|
|
|
<div class="entity-meta-item">
|
|
|
|
@icon('lock')
|
|
|
|
<div>{{ trans('entities.books_permissions_active') }}</div>
|
|
|
|
</div>
|
2018-04-30 08:53:04 -04:00
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2022-10-10 11:22:51 -04:00
|
|
|
@if($page->chapter && $page->chapter->hasPermissions())
|
2018-04-30 08:53:04 -04:00
|
|
|
<div class="active-restriction">
|
|
|
|
@if(userCan('restrictions-manage', $page->chapter))
|
2022-05-13 13:03:43 -04:00
|
|
|
<a href="{{ $page->chapter->getUrl('/permissions') }}" class="entity-meta-item">
|
|
|
|
@icon('lock')
|
|
|
|
<div>{{ trans('entities.chapters_permissions_active') }}</div>
|
|
|
|
</a>
|
2018-04-30 08:53:04 -04:00
|
|
|
@else
|
2022-05-13 13:03:43 -04:00
|
|
|
<div class="entity-meta-item">
|
|
|
|
@icon('lock')
|
|
|
|
<div>{{ trans('entities.chapters_permissions_active') }}</div>
|
|
|
|
</div>
|
2018-04-30 08:53:04 -04:00
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2022-10-10 11:22:51 -04:00
|
|
|
@if($page->hasPermissions())
|
2018-04-30 08:53:04 -04:00
|
|
|
<div class="active-restriction">
|
|
|
|
@if(userCan('restrictions-manage', $page))
|
2022-05-13 13:03:43 -04:00
|
|
|
<a href="{{ $page->getUrl('/permissions') }}" class="entity-meta-item">
|
|
|
|
@icon('lock')
|
|
|
|
<div>{{ trans('entities.pages_permissions_active') }}</div>
|
|
|
|
</a>
|
2018-04-30 08:53:04 -04:00
|
|
|
@else
|
2022-05-13 13:03:43 -04:00
|
|
|
<div class="entity-meta-item">
|
|
|
|
@icon('lock')
|
|
|
|
<div>{{ trans('entities.pages_permissions_active') }}</div>
|
|
|
|
</div>
|
2018-04-30 08:53:04 -04:00
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
@endif
|
2019-07-07 08:45:46 -04:00
|
|
|
|
|
|
|
@if($page->template)
|
2022-05-13 13:03:43 -04:00
|
|
|
<div class="entity-meta-item">
|
|
|
|
@icon('template')
|
|
|
|
<div>{{ trans('entities.pages_is_template') }}</div>
|
2019-07-07 08:45:46 -04:00
|
|
|
</div>
|
|
|
|
@endif
|
2017-08-20 08:57:25 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-09-20 16:32:19 -04:00
|
|
|
|
2018-12-09 11:51:31 -05:00
|
|
|
<div class="actions mb-xl">
|
2019-06-21 08:24:04 -04:00
|
|
|
<h5>{{ trans('common.actions') }}</h5>
|
2018-12-09 11:51:31 -05:00
|
|
|
|
2023-01-28 11:06:11 -05:00
|
|
|
<div class="icon-list text-link">
|
2018-12-09 11:51:31 -05:00
|
|
|
|
|
|
|
{{--User Actions--}}
|
|
|
|
@if(userCan('page-update', $page))
|
2022-11-05 09:39:17 -04:00
|
|
|
<a href="{{ $page->getUrl('/edit') }}" data-shortcut="edit" class="icon-list-item">
|
2019-02-16 10:05:18 -05:00
|
|
|
<span>@icon('edit')</span>
|
2018-12-09 11:51:31 -05:00
|
|
|
<span>{{ trans('common.edit') }}</span>
|
|
|
|
</a>
|
2019-03-10 17:40:02 -04:00
|
|
|
@endif
|
2022-07-16 08:17:08 -04:00
|
|
|
@if(userCanOnAny('create', \BookStack\Entities\Models\Book::class) || userCanOnAny('create', \BookStack\Entities\Models\Chapter::class) || userCan('page-create-all') || userCan('page-create-own'))
|
2022-11-05 09:39:17 -04:00
|
|
|
<a href="{{ $page->getUrl('/copy') }}" data-shortcut="copy" class="icon-list-item">
|
2019-02-16 10:05:18 -05:00
|
|
|
<span>@icon('copy')</span>
|
2018-12-09 11:51:31 -05:00
|
|
|
<span>{{ trans('common.copy') }}</span>
|
|
|
|
</a>
|
2019-03-10 17:40:02 -04:00
|
|
|
@endif
|
|
|
|
@if(userCan('page-update', $page))
|
2019-01-13 09:10:27 -05:00
|
|
|
@if(userCan('page-delete', $page))
|
2022-11-05 09:39:17 -04:00
|
|
|
<a href="{{ $page->getUrl('/move') }}" data-shortcut="move" class="icon-list-item">
|
2019-02-16 10:05:18 -05:00
|
|
|
<span>@icon('folder')</span>
|
2019-01-13 09:10:27 -05:00
|
|
|
<span>{{ trans('common.move') }}</span>
|
|
|
|
</a>
|
|
|
|
@endif
|
2018-12-09 11:51:31 -05:00
|
|
|
@endif
|
2022-11-05 09:39:17 -04:00
|
|
|
<a href="{{ $page->getUrl('/revisions') }}" data-shortcut="revisions" class="icon-list-item">
|
2022-09-03 07:32:21 -04:00
|
|
|
<span>@icon('history')</span>
|
|
|
|
<span>{{ trans('entities.revisions') }}</span>
|
|
|
|
</a>
|
2018-12-09 11:51:31 -05:00
|
|
|
@if(userCan('restrictions-manage', $page))
|
2022-11-05 09:39:17 -04:00
|
|
|
<a href="{{ $page->getUrl('/permissions') }}" data-shortcut="permissions" class="icon-list-item">
|
2019-02-16 10:05:18 -05:00
|
|
|
<span>@icon('lock')</span>
|
2018-12-09 11:51:31 -05:00
|
|
|
<span>{{ trans('entities.permissions') }}</span>
|
|
|
|
</a>
|
|
|
|
@endif
|
|
|
|
@if(userCan('page-delete', $page))
|
2022-11-05 09:39:17 -04:00
|
|
|
<a href="{{ $page->getUrl('/delete') }}" data-shortcut="delete" class="icon-list-item">
|
2019-02-16 10:05:18 -05:00
|
|
|
<span>@icon('delete')</span>
|
2018-12-09 11:51:31 -05:00
|
|
|
<span>{{ trans('common.delete') }}</span>
|
|
|
|
</a>
|
|
|
|
@endif
|
2019-04-13 07:46:15 -04:00
|
|
|
|
|
|
|
<hr class="primary-background"/>
|
|
|
|
|
2021-05-15 19:29:56 -04:00
|
|
|
@if(signedInUser())
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.favourite-action', ['entity' => $page])
|
2021-05-15 19:29:56 -04:00
|
|
|
@endif
|
2021-08-28 16:48:17 -04:00
|
|
|
@if(userCan('content-export'))
|
|
|
|
@include('entities.export-menu', ['entity' => $page])
|
|
|
|
@endif
|
2018-12-09 11:51:31 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@stop
|