| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  | @extends('tri-layout') | 
					
						
							| 
									
										
										
										
											2019-01-13 23:54:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | @section('body') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <div class="mb-m"> | 
					
						
							|  |  |  |         @include('pages._breadcrumbs', ['page' => $page]) | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <div class="content-wrap card"> | 
					
						
							|  |  |  |         <div class="page-content flex" page-display="{{ $page->id }}"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             <div class="pointer-container" id="pointer"> | 
					
						
							|  |  |  |                 <div class="pointer anim {{ userCan('page-update', $page) ? 'is-page-editable' : ''}}" > | 
					
						
							|  |  |  |                     <span class="icon text-primary">@icon('link') @icon('include', ['style' => 'display:none;'])</span> | 
					
						
							|  |  |  |                     <span class="input-group"> | 
					
						
							|  |  |  |                     <input readonly="readonly" type="text" id="pointer-url" placeholder="url"> | 
					
						
							|  |  |  |                     <button class="button icon" data-clipboard-target="#pointer-url" type="button" title="{{ trans('entities.pages_copy_link') }}">@icon('copy')</button> | 
					
						
							|  |  |  |                 </span> | 
					
						
							|  |  |  |                     @if(userCan('page-update', $page)) | 
					
						
							|  |  |  |                         <a href="{{ $page->getUrl('/edit') }}" id="pointer-edit" data-edit-href="{{ $page->getUrl('/edit') }}" | 
					
						
							|  |  |  |                            class="button icon heading-edit-icon" title="{{ trans('entities.pages_edit_content_link')}}">@icon('edit')</a> | 
					
						
							|  |  |  |                     @endif | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             @include('pages.page-display') | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @if ($commentsEnabled) | 
					
						
							|  |  |  |         <div class="container small nopad comments-container mb-l"> | 
					
						
							|  |  |  |             @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) | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |         <div id="page-attachments" class="mb-xl"> | 
					
						
							|  |  |  |             <h5>{{ trans('entities.pages_attachments') }}</h5> | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |             <div class="body"> | 
					
						
							|  |  |  |                 @foreach($page->attachments as $attachment) | 
					
						
							|  |  |  |                     <div class="attachment"> | 
					
						
							| 
									
										
										
										
											2018-02-18 03:49:00 +08:00
										 |  |  |                         <a href="{{ $attachment->getUrl() }}" @if($attachment->external) target="_blank" @endif>@icon($attachment->external ? 'export' : 'file'){{ $attachment->name }}</a> | 
					
						
							| 
									
										
										
										
											2017-08-26 22:41:33 +08:00
										 |  |  |                     </div> | 
					
						
							|  |  |  |                 @endforeach | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @if (isset($pageNav) && count($pageNav)) | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |         <div id="page-navigation" class="mb-xl"> | 
					
						
							|  |  |  |             <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'] }}"> | 
					
						
							|  |  |  |                             <a href="{{ $navItem['link'] }}">{{ $navItem['text'] }}</a> | 
					
						
							|  |  |  |                         </li> | 
					
						
							|  |  |  |                     @endforeach | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |     <div id="page-details" class="entity-details mb-xl"> | 
					
						
							|  |  |  |         <h5>{{ trans('common.details') }}</h5> | 
					
						
							| 
									
										
										
										
											2018-04-30 20:53:04 +08:00
										 |  |  |         <div class="body text-muted 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 | 
					
						
							| 
									
										
										
										
											2017-08-20 20:57:25 +08:00
										 |  |  |         </div> | 
					
						
							|  |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2017-09-21 04:32:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-22 03:05:11 +08:00
										 |  |  |     @include('partials.book-tree', ['book' => $book, 'sidebarTree' => $sidebarTree]) | 
					
						
							| 
									
										
										
										
											2017-08-20 01:32:24 +08:00
										 |  |  | @stop | 
					
						
							| 
									
										
										
										
											2015-10-11 01:57:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  | @section('right') | 
					
						
							|  |  |  |     <div class="actions mb-xl"> | 
					
						
							|  |  |  |         <h5>Actions</h5> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <div class="icon-list text-primary"> | 
					
						
							|  |  |  |             {{--Export--}} | 
					
						
							|  |  |  |             <div dropdown class="dropdown-container block"> | 
					
						
							|  |  |  |                 <div dropdown-toggle class="icon-list-item"> | 
					
						
							|  |  |  |                     <span class="icon">@icon('export')</span> | 
					
						
							|  |  |  |                     <span>{{ trans('entities.export') }}</span> | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |                 <ul class="wide"> | 
					
						
							|  |  |  |                     <li><a href="{{ $page->getUrl('/export/html') }}" target="_blank">{{ trans('entities.export_html') }} <span class="text-muted float right">.html</span></a></li> | 
					
						
							|  |  |  |                     <li><a href="{{ $page->getUrl('/export/pdf') }}" target="_blank">{{ trans('entities.export_pdf') }} <span class="text-muted float right">.pdf</span></a></li> | 
					
						
							|  |  |  |                     <li><a href="{{ $page->getUrl('/export/plaintext') }}" target="_blank">{{ trans('entities.export_text') }} <span class="text-muted float right">.txt</span></a></li> | 
					
						
							|  |  |  |                 </ul> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             {{--User Actions--}} | 
					
						
							|  |  |  |             @if(userCan('page-update', $page)) | 
					
						
							|  |  |  |                 <a href="{{ $page->getUrl('/edit') }}" class="icon-list-item"> | 
					
						
							|  |  |  |                     <span class="icon">@icon('edit')</span> | 
					
						
							|  |  |  |                     <span>{{ trans('common.edit') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							|  |  |  |                 <a href="{{ $page->getUrl('/copy') }}" class="icon-list-item"> | 
					
						
							|  |  |  |                     <span class="icon">@icon('copy')</span> | 
					
						
							|  |  |  |                     <span>{{ trans('common.copy') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							| 
									
										
										
										
											2019-01-13 22:10:27 +08:00
										 |  |  |                 @if(userCan('page-delete', $page)) | 
					
						
							|  |  |  | 	                <a href="{{ $page->getUrl('/move') }}" class="icon-list-item"> | 
					
						
							|  |  |  | 	                    <span class="icon">@icon('folder')</span> | 
					
						
							|  |  |  | 	                    <span>{{ trans('common.move') }}</span> | 
					
						
							|  |  |  | 	                </a> | 
					
						
							|  |  |  |                 @endif | 
					
						
							| 
									
										
										
										
											2018-12-10 00:51:31 +08:00
										 |  |  |                 <a href="{{ $page->getUrl('/revisions') }}" class="icon-list-item"> | 
					
						
							|  |  |  |                     <span class="icon">@icon('history')</span> | 
					
						
							|  |  |  |                     <span>{{ trans('entities.revisions') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  |             @if(userCan('restrictions-manage', $page)) | 
					
						
							|  |  |  |                 <a href="{{ $page->getUrl('/permissions') }}" class="icon-list-item"> | 
					
						
							|  |  |  |                     <span class="icon">@icon('lock')</span> | 
					
						
							|  |  |  |                     <span>{{ trans('entities.permissions') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  |             @if(userCan('page-delete', $page)) | 
					
						
							|  |  |  |                 <a href="{{ $page->getUrl('/delete') }}" class="icon-list-item"> | 
					
						
							|  |  |  |                     <span class="icon">@icon('delete')</span> | 
					
						
							|  |  |  |                     <span>{{ trans('common.delete') }}</span> | 
					
						
							|  |  |  |                 </a> | 
					
						
							|  |  |  |             @endif | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | @stop |