2017-08-20 01:32:24 +08:00
|
|
|
@extends('sidebar-layout')
|
2015-07-13 04:31:15 +08:00
|
|
|
|
2017-08-20 01:32:24 +08: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 20:57:25 +08:00
|
|
|
<span dropdown class="dropdown-container">
|
2018-02-18 03:49:00 +08:00
|
|
|
<div dropdown-toggle class="text-button text-primary">@icon('export'){{ trans('entities.export') }}</div>
|
2017-08-20 20:57:25 +08: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-20 01:32:24 +08:00
|
|
|
@if(userCan('page-update', $page))
|
2018-02-17 21:30:52 +08:00
|
|
|
<a href="{{ $page->getUrl('/edit') }}" class="text-primary text-button" >@icon('edit'){{ trans('common.edit') }}</a>
|
2017-08-20 01:32:24 +08:00
|
|
|
@endif
|
|
|
|
@if(userCan('page-update', $page) || userCan('restrictions-manage', $page) || userCan('page-delete', $page))
|
|
|
|
<div dropdown class="dropdown-container">
|
2018-02-18 03:49:00 +08:00
|
|
|
<a dropdown-toggle class="text-primary text-button">@icon('more') {{ trans('common.more') }}</a>
|
2017-08-20 01:32:24 +08:00
|
|
|
<ul>
|
2016-02-28 03:24:42 +08:00
|
|
|
@if(userCan('page-update', $page))
|
2018-04-15 01:00:16 +08:00
|
|
|
<li><a href="{{ $page->getUrl('/copy') }}" class="text-primary" >@icon('copy'){{ trans('common.copy') }}</a></li>
|
2018-02-18 03:49:00 +08: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 18:49:41 +08:00
|
|
|
@endif
|
2017-08-20 01:32:24 +08:00
|
|
|
@if(userCan('restrictions-manage', $page))
|
2018-02-18 03:49:00 +08:00
|
|
|
<li><a href="{{ $page->getUrl('/permissions') }}" class="text-primary">@icon('lock'){{ trans('entities.permissions') }}</a></li>
|
2015-08-31 00:53:30 +08:00
|
|
|
@endif
|
2017-08-20 01:32:24 +08:00
|
|
|
@if(userCan('page-delete', $page))
|
2018-02-17 21:30:52 +08:00
|
|
|
<li><a href="{{ $page->getUrl('/delete') }}" class="text-neg">@icon('delete'){{ trans('common.delete') }}</a></li>
|
2017-08-20 01:32:24 +08:00
|
|
|
@endif
|
|
|
|
</ul>
|
2015-08-31 00:53:30 +08:00
|
|
|
</div>
|
2017-08-20 01:32:24 +08:00
|
|
|
@endif
|
|
|
|
|
2015-07-24 04:55:46 +08:00
|
|
|
</div>
|
2015-07-13 04:31:15 +08:00
|
|
|
</div>
|
2017-08-20 01:32:24 +08:00
|
|
|
@stop
|
2015-07-16 05:55:49 +08:00
|
|
|
|
2017-08-20 01:32:24 +08:00
|
|
|
@section('sidebar')
|
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)
|
|
|
|
<div class="card">
|
2018-02-18 03:49:00 +08:00
|
|
|
<h3>@icon('attach') {{ trans('entities.pages_attachments') }}</h3>
|
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))
|
|
|
|
<div class="card">
|
2018-02-18 03:49:00 +08:00
|
|
|
<h3>@icon('open-book') {{ trans('entities.pages_navigation') }}</h3>
|
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-04-30 20:53:04 +08:00
|
|
|
<div class="card entity-details">
|
2018-02-18 03:49:00 +08:00
|
|
|
<h3>@icon('info') {{ trans('common.details') }}</h3>
|
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
|
|
|
|
|
|
|
@include('partials/book-tree', ['book' => $book, 'sidebarTree' => $sidebarTree])
|
2017-11-16 02:35:24 +08:00
|
|
|
|
2017-08-20 01:32:24 +08:00
|
|
|
@stop
|
2015-10-11 01:57:52 +08:00
|
|
|
|
2017-08-20 01:32:24 +08:00
|
|
|
@section('body')
|
2018-05-20 17:11:56 +08:00
|
|
|
<div class="page-content" page-display="{{ $page->id }}">
|
2015-10-11 01:57:52 +08:00
|
|
|
|
2017-08-20 01:32:24 +08:00
|
|
|
<div class="pointer-container" id="pointer">
|
|
|
|
<div class="pointer anim" >
|
2018-02-18 03:49:00 +08:00
|
|
|
<span class="icon text-primary">@icon('link') @icon('include', ['style' => 'display:none;'])</span>
|
2017-08-20 01:32:24 +08:00
|
|
|
<input readonly="readonly" type="text" id="pointer-url" placeholder="url">
|
2018-02-18 03:49:00 +08:00
|
|
|
<button class="button icon" data-clipboard-target="#pointer-url" type="button" title="{{ trans('entities.pages_copy_link') }}">@icon('copy')</button>
|
2015-08-31 18:43:28 +08:00
|
|
|
</div>
|
2017-08-20 01:32:24 +08:00
|
|
|
</div>
|
2016-08-14 19:29:35 +08:00
|
|
|
|
2017-08-20 01:32:24 +08:00
|
|
|
@include('pages/page-display')
|
2016-09-18 21:49:36 +08:00
|
|
|
|
2017-08-20 01:32:24 +08:00
|
|
|
</div>
|
2017-11-16 02:35:24 +08:00
|
|
|
@if ($commentsEnabled)
|
|
|
|
<div class="container small nopad">
|
|
|
|
@include('comments/comments', ['page' => $page])
|
|
|
|
</div>
|
|
|
|
@endif
|
2015-12-31 04:48:57 +08:00
|
|
|
@stop
|