2017-08-19 13:32:24 -04:00
|
|
|
@extends('sidebar-layout')
|
2015-07-12 16:31:15 -04:00
|
|
|
|
2017-08-19 13:32:24 -04:00
|
|
|
@section('toolbar')
|
|
|
|
<div class="col-sm-8 col-xs-5 faded">
|
|
|
|
@include('pages._breadcrumbs', ['page' => $page])
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-4 col-xs-7 faded">
|
|
|
|
<div class="action-buttons">
|
2017-08-20 08:57:25 -04:00
|
|
|
<span dropdown class="dropdown-container">
|
2018-02-17 14:49:00 -05:00
|
|
|
<div dropdown-toggle class="text-button text-primary">@icon('export'){{ trans('entities.export') }}</div>
|
2017-08-20 08:57:25 -04:00
|
|
|
<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>
|
|
|
|
</span>
|
2017-08-19 13:32:24 -04:00
|
|
|
@if(userCan('page-update', $page))
|
2018-02-17 08:30:52 -05:00
|
|
|
<a href="{{ $page->getUrl('/edit') }}" class="text-primary text-button" >@icon('edit'){{ trans('common.edit') }}</a>
|
2017-08-19 13:32:24 -04:00
|
|
|
@endif
|
|
|
|
@if(userCan('page-update', $page) || userCan('restrictions-manage', $page) || userCan('page-delete', $page))
|
|
|
|
<div dropdown class="dropdown-container">
|
2018-02-17 14:49:00 -05:00
|
|
|
<a dropdown-toggle class="text-primary text-button">@icon('more') {{ trans('common.more') }}</a>
|
2017-08-19 13:32:24 -04:00
|
|
|
<ul>
|
2016-02-27 14:24:42 -05:00
|
|
|
@if(userCan('page-update', $page))
|
2018-04-14 13:00:16 -04:00
|
|
|
<li><a href="{{ $page->getUrl('/copy') }}" class="text-primary" >@icon('copy'){{ trans('common.copy') }}</a></li>
|
2018-02-17 14:49:00 -05:00
|
|
|
<li><a href="{{ $page->getUrl('/move') }}" class="text-primary" >@icon('folder'){{ trans('common.move') }}</a></li>
|
|
|
|
<li><a href="{{ $page->getUrl('/revisions') }}" class="text-primary">@icon('history'){{ trans('entities.revisions') }}</a></li>
|
2016-02-28 05:49:41 -05:00
|
|
|
@endif
|
2017-08-19 13:32:24 -04:00
|
|
|
@if(userCan('restrictions-manage', $page))
|
2018-02-17 14:49:00 -05:00
|
|
|
<li><a href="{{ $page->getUrl('/permissions') }}" class="text-primary">@icon('lock'){{ trans('entities.permissions') }}</a></li>
|
2015-08-30 12:53:30 -04:00
|
|
|
@endif
|
2017-08-19 13:32:24 -04:00
|
|
|
@if(userCan('page-delete', $page))
|
2018-02-17 08:30:52 -05:00
|
|
|
<li><a href="{{ $page->getUrl('/delete') }}" class="text-neg">@icon('delete'){{ trans('common.delete') }}</a></li>
|
2017-08-19 13:32:24 -04:00
|
|
|
@endif
|
|
|
|
</ul>
|
2015-08-30 12:53:30 -04:00
|
|
|
</div>
|
2017-08-19 13:32:24 -04:00
|
|
|
@endif
|
|
|
|
|
2015-07-23 16:55:46 -04:00
|
|
|
</div>
|
2015-07-12 16:31:15 -04:00
|
|
|
</div>
|
2017-08-19 13:32:24 -04:00
|
|
|
@stop
|
2015-07-15 17:55:49 -04:00
|
|
|
|
2017-08-19 13:32:24 -04:00
|
|
|
@section('sidebar')
|
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>
|
|
|
|
@include('components.tag-list', ['entity' => $page])
|
|
|
|
</section>
|
2017-08-26 10:41:33 -04:00
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($page->attachments->count() > 0)
|
|
|
|
<div class="card">
|
2018-02-17 14:49:00 -05:00
|
|
|
<h3>@icon('attach') {{ trans('entities.pages_attachments') }}</h3>
|
2017-08-26 10:41:33 -04:00
|
|
|
<div class="body">
|
|
|
|
@foreach($page->attachments as $attachment)
|
|
|
|
<div class="attachment">
|
2018-02-17 14:49:00 -05:00
|
|
|
<a href="{{ $attachment->getUrl() }}" @if($attachment->external) target="_blank" @endif>@icon($attachment->external ? 'export' : 'file'){{ $attachment->name }}</a>
|
2017-08-26 10:41:33 -04:00
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (isset($pageNav) && count($pageNav))
|
|
|
|
<div class="card">
|
2018-02-17 14:49:00 -05:00
|
|
|
<h3>@icon('open-book') {{ trans('entities.pages_navigation') }}</h3>
|
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'] }}">
|
|
|
|
<a href="{{ $navItem['link'] }}">{{ $navItem['text'] }}</a>
|
|
|
|
</li>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2018-04-30 08:53:04 -04:00
|
|
|
<div class="card entity-details">
|
2018-02-17 14:49:00 -05:00
|
|
|
<h3>@icon('info') {{ trans('common.details') }}</h3>
|
2018-04-30 08:53:04 -04:00
|
|
|
<div class="body text-muted text-small blended-links">
|
2017-08-26 09:41:46 -04:00
|
|
|
@include('partials.entity-meta', ['entity' => $page])
|
2018-04-30 08:53:04 -04: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 08:57:25 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-09-20 16:32:19 -04:00
|
|
|
|
|
|
|
@include('partials/book-tree', ['book' => $book, 'sidebarTree' => $sidebarTree])
|
2017-11-15 13:35:24 -05:00
|
|
|
|
2017-08-19 13:32:24 -04:00
|
|
|
@stop
|
2015-10-10 13:57:52 -04:00
|
|
|
|
2018-05-27 15:20:13 -04:00
|
|
|
@section('body-wrap-classes', 'flex-fill columns')
|
|
|
|
|
2017-08-19 13:32:24 -04:00
|
|
|
@section('body')
|
2018-05-27 15:20:13 -04:00
|
|
|
|
|
|
|
<div class="page-content flex" page-display="{{ $page->id }}">
|
2015-10-10 13:57:52 -04:00
|
|
|
|
2017-08-19 13:32:24 -04:00
|
|
|
<div class="pointer-container" id="pointer">
|
2018-06-10 07:36:23 -04:00
|
|
|
<div class="pointer anim {{ userCan('page-update', $page) ? 'is-page-editable' : ''}}" >
|
2018-02-17 14:49:00 -05:00
|
|
|
<span class="icon text-primary">@icon('link') @icon('include', ['style' => 'display:none;'])</span>
|
2018-06-10 07:36:23 -04:00
|
|
|
<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
|
2015-08-31 06:43:28 -04:00
|
|
|
</div>
|
2017-08-19 13:32:24 -04:00
|
|
|
</div>
|
2016-08-14 07:29:35 -04:00
|
|
|
|
2017-08-19 13:32:24 -04:00
|
|
|
@include('pages/page-display')
|
|
|
|
</div>
|
2018-05-27 15:20:13 -04:00
|
|
|
|
2017-11-15 13:35:24 -05:00
|
|
|
@if ($commentsEnabled)
|
2018-05-27 15:20:13 -04:00
|
|
|
<div class="container small nopad comments-container">
|
2017-11-15 13:35:24 -05:00
|
|
|
@include('comments/comments', ['page' => $page])
|
|
|
|
</div>
|
|
|
|
@endif
|
2015-12-30 15:48:57 -05:00
|
|
|
@stop
|