| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  | @extends('tri-layout') | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | @section('body') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 18:30:26 +08:00
										 |  |  |     <div class="mb-m print-hidden"> | 
					
						
							| 
									
										
										
										
											2019-02-18 01:52:42 +08:00
										 |  |  |         @include('partials.breadcrumbs', ['crumbs' => [ | 
					
						
							|  |  |  |             $page->book, | 
					
						
							|  |  |  |             $page->hasChapter() ? $page->chapter : null, | 
					
						
							|  |  |  |             $page, | 
					
						
							|  |  |  |         ]]) | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 22:44:51 +08:00
										 |  |  |     <main class="content-wrap card"> | 
					
						
							| 
									
										
										
										
											2020-04-26 02:59:23 +08:00
										 |  |  |         <div class="page-content clearfix" page-display="{{ $page->id }}"> | 
					
						
							| 
									
										
										
										
											2019-06-16 18:17:15 +08:00
										 |  |  |             @include('pages.pointer', ['page' => $page]) | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |             @include('pages.page-display') | 
					
						
							|  |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2019-08-25 22:44:51 +08:00
										 |  |  |     </main> | 
					
						
							| 
									
										
										
										
											2021-01-27 12:35:55 +08:00
										 |  |  |         | 
					
						
							|  |  |  |     <div class="prev-next-btn"> | 
					
						
							|  |  |  |         <div class="grid third no-row-gap prev-next"> | 
					
						
							|  |  |  |             <div class="text-m-left"> | 
					
						
							|  |  |  |                 <a class="{{ $disablePrev }}" href="{{ $prevPage }}">Previous Page</a> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |             <div></div> | 
					
						
							|  |  |  |             <div class="text-m-right"> | 
					
						
							|  |  |  |                 <a class="{{ $disableNxt }}" href="{{ $nextPage }}">Next Page</a> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     @if ($commentsEnabled) | 
					
						
							| 
									
										
										
										
											2019-08-25 18:30:26 +08:00
										 |  |  |         <div class="container small p-none comments-container mb-l print-hidden"> | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  |             @include('comments.comments', ['page' => $page]) | 
					
						
							|  |  |  |             <div class="clearfix"></div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     @endif | 
					
						
							|  |  |  | @stop | 
					
						
							| 
									
										
										
										
											2015-07-13 04:31:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  | @section('left') | 
					
						
							| 
									
										
										
										
											2015-10-11 01:57:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |     @if($page->tags->count() > 0) | 
					
						
							| 
									
										
										
										
											2018-04-30 21:35:15 +08:00
										 |  |  |         <section> | 
					
						
							|  |  |  |             @include('components.tag-list', ['entity' => $page]) | 
					
						
							|  |  |  |         </section> | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @if ($page->attachments->count() > 0) | 
					
						
							| 
									
										
										
										
											2019-03-30 23:15:01 +08:00
										 |  |  |         <div id="page-attachments" class="mb-l"> | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |             <h5>{{ trans('entities.pages_attachments') }}</h5> | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |             <div class="body"> | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |                 @include('attachments.list', ['attachments' => $page->attachments]) | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @if (isset($pageNav) && count($pageNav)) | 
					
						
							| 
									
										
										
										
											2019-08-25 22:44:51 +08:00
										 |  |  |         <nav id="page-navigation" class="mb-xl" aria-label="{{ trans('entities.pages_navigation') }}"> | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |             <h5>{{ trans('entities.pages_navigation') }}</h5> | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |             <div class="body"> | 
					
						
							|  |  |  |                 <div class="sidebar-page-nav menu"> | 
					
						
							|  |  |  |                     @foreach($pageNav as $navItem) | 
					
						
							|  |  |  |                         <li class="page-nav-item h{{ $navItem['level'] }}"> | 
					
						
							| 
									
										
										
										
											2020-12-19 05:26:22 +08:00
										 |  |  |                             <a href="{{ $navItem['link'] }}" class="text-limit-lines-1 block">{{ $navItem['text'] }}</a> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:39:11 +08:00
										 |  |  |                             <div class="primary-background sidebar-page-nav-bullet"></div> | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |                         </li> | 
					
						
							|  |  |  |                     @endforeach | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             </div> | 
					
						
							| 
									
										
										
										
											2019-08-25 22:44:51 +08:00
										 |  |  |         </nav> | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-30 23:15:01 +08:00
										 |  |  |     @include('partials.book-tree', ['book' => $book, 'sidebarTree' => $sidebarTree]) | 
					
						
							|  |  |  | @stop | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @section('right') | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |     <div id="page-details" class="entity-details mb-xl"> | 
					
						
							|  |  |  |         <h5>{{ trans('common.details') }}</h5> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:15:01 +08:00
										 |  |  |         <div class="body text-small blended-links"> | 
					
						
							| 
									
										
										
										
											2017-08-26 21:41:46 +08:00
										 |  |  |             @include('partials.entity-meta', ['entity' => $page]) | 
					
						
							| 
									
										
										
										
											2018-04-30 20:53:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             @if($book->restricted) | 
					
						
							|  |  |  |                 <div class="active-restriction"> | 
					
						
							|  |  |  |                     @if(userCan('restrictions-manage', $book)) | 
					
						
							|  |  |  |                         <a href="{{ $book->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.books_permissions_active') }}</a> | 
					
						
							|  |  |  |                     @else | 
					
						
							|  |  |  |                         @icon('lock'){{ trans('entities.books_permissions_active') }} | 
					
						
							|  |  |  |                     @endif | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             @if($page->chapter && $page->chapter->restricted) | 
					
						
							|  |  |  |                 <div class="active-restriction"> | 
					
						
							|  |  |  |                     @if(userCan('restrictions-manage', $page->chapter)) | 
					
						
							|  |  |  |                         <a href="{{ $page->chapter->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.chapters_permissions_active') }}</a> | 
					
						
							|  |  |  |                     @else | 
					
						
							|  |  |  |                         @icon('lock'){{ trans('entities.chapters_permissions_active') }} | 
					
						
							|  |  |  |                     @endif | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             @if($page->restricted) | 
					
						
							|  |  |  |                 <div class="active-restriction"> | 
					
						
							|  |  |  |                     @if(userCan('restrictions-manage', $page)) | 
					
						
							|  |  |  |                         <a href="{{ $page->getUrl('/permissions') }}">@icon('lock'){{ trans('entities.pages_permissions_active') }}</a> | 
					
						
							|  |  |  |                     @else | 
					
						
							|  |  |  |                         @icon('lock'){{ trans('entities.pages_permissions_active') }} | 
					
						
							|  |  |  |                     @endif | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             @endif | 
					
						
							| 
									
										
										
										
											2019-07-07 20:45:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             @if($page->template) | 
					
						
							|  |  |  |                 <div> | 
					
						
							|  |  |  |                     @icon('template'){{ trans('entities.pages_is_template') }} | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             @endif | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  |         </div> | 
					
						
							|  |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2017-09-21 04:32:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |     <div class="actions mb-xl"> | 
					
						
							| 
									
										
										
										
											2019-06-21 20:24:04 +08:00
										 |  |  |         <h5>{{ trans('common.actions') }}</h5> | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         <div class="icon-list text-primary"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             {{--User Actions--}} | 
					
						
							|  |  |  |             @if(userCan('page-update', $page)) | 
					
						
							|  |  |  |                 <a href="{{ $page->getUrl('/edit') }}" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:05:18 +08:00
										 |  |  |                     <span>@icon('edit')</span> | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |                     <span>{{ trans('common.edit') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							| 
									
										
										
										
											2019-03-11 05:40:02 +08:00
										 |  |  |             @endif | 
					
						
							|  |  |  |             @if(userCanOnAny('page-create')) | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |                 <a href="{{ $page->getUrl('/copy') }}" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:05:18 +08:00
										 |  |  |                     <span>@icon('copy')</span> | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |                     <span>{{ trans('common.copy') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							| 
									
										
										
										
											2019-03-11 05:40:02 +08:00
										 |  |  |             @endif | 
					
						
							|  |  |  |             @if(userCan('page-update', $page)) | 
					
						
							| 
									
										
										
										
											2019-01-13 22:10:27 +08:00
										 |  |  |                 @if(userCan('page-delete', $page)) | 
					
						
							|  |  |  | 	                <a href="{{ $page->getUrl('/move') }}" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:05:18 +08:00
										 |  |  | 	                    <span>@icon('folder')</span> | 
					
						
							| 
									
										
										
										
											2019-01-13 22:10:27 +08:00
										 |  |  | 	                    <span>{{ trans('common.move') }}</span> | 
					
						
							|  |  |  | 	                </a> | 
					
						
							|  |  |  |                 @endif | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |                 <a href="{{ $page->getUrl('/revisions') }}" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:05:18 +08:00
										 |  |  |                     <span>@icon('history')</span> | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |                     <span>{{ trans('entities.revisions') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  |             @if(userCan('restrictions-manage', $page)) | 
					
						
							|  |  |  |                 <a href="{{ $page->getUrl('/permissions') }}" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:05:18 +08:00
										 |  |  |                     <span>@icon('lock')</span> | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |                     <span>{{ trans('entities.permissions') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  |             @if(userCan('page-delete', $page)) | 
					
						
							|  |  |  |                 <a href="{{ $page->getUrl('/delete') }}" class="icon-list-item"> | 
					
						
							| 
									
										
										
										
											2019-02-16 23:05:18 +08:00
										 |  |  |                     <span>@icon('delete')</span> | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |                     <span>{{ trans('common.delete') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							|  |  |  |             @endif | 
					
						
							| 
									
										
										
										
											2019-04-13 19:46:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             <hr class="primary-background"/> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             {{--Export--}} | 
					
						
							| 
									
										
										
										
											2019-08-25 01:26:28 +08:00
										 |  |  |             @include('partials.entity-export-menu', ['entity' => $page]) | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | @stop |