2016-06-12 07:14:14 -04:00
|
|
|
<div class="page {{$page->draft ? 'draft' : ''}} entity-list-item" data-entity-type="page" data-entity-id="{{$page->id}}">
|
2016-09-18 09:49:36 -04:00
|
|
|
<h4>
|
2017-07-27 11:10:58 -04:00
|
|
|
@if (isset($showPath) && $showPath)
|
|
|
|
<a href="{{ $page->book->getUrl() }}" class="text-book">
|
2018-02-17 08:30:52 -05:00
|
|
|
@icon('book'){{ $page->book->getShortName() }}
|
2017-07-27 11:10:58 -04:00
|
|
|
</a>
|
|
|
|
<span class="text-muted"> » </span>
|
|
|
|
@if($page->chapter)
|
|
|
|
<a href="{{ $page->chapter->getUrl() }}" class="text-chapter">
|
2018-02-17 08:30:52 -05:00
|
|
|
@icon('chapter'){{ $page->chapter->getShortName() }}
|
2017-07-27 11:10:58 -04:00
|
|
|
</a>
|
|
|
|
<span class="text-muted"> » </span>
|
|
|
|
@endif
|
|
|
|
@endif
|
2018-02-17 08:30:52 -05:00
|
|
|
<a href="{{ $page->getUrl() }}" class="text-page entity-list-item-link">@icon('page')<span class="entity-list-item-name break-text">{{ $page->name }}</span></a>
|
2016-09-18 09:49:36 -04:00
|
|
|
</h4>
|
2015-10-14 16:55:56 -04:00
|
|
|
|
2017-08-06 16:08:03 -04:00
|
|
|
<div class="entity-item-snippet">
|
|
|
|
@if(isset($page->searchSnippet))
|
2018-02-11 09:28:26 -05:00
|
|
|
<p class="text-muted break-text">{!! $page->searchSnippet !!}</p>
|
2017-08-06 16:08:03 -04:00
|
|
|
@else
|
2018-02-11 09:28:26 -05:00
|
|
|
<p class="text-muted break-text">{{ $page->getExcerpt() }}</p>
|
2017-08-06 16:08:03 -04:00
|
|
|
@endif
|
|
|
|
</div>
|
2016-02-20 13:51:01 -05:00
|
|
|
|
|
|
|
@if(isset($style) && $style === 'detailed')
|
|
|
|
<div class="row meta text-muted text-small">
|
2016-06-11 16:04:18 -04:00
|
|
|
<div class="col-md-6">
|
2016-12-03 13:35:40 -05:00
|
|
|
@include('partials.entity-meta', ['entity' => $page])
|
2016-02-20 13:51:01 -05:00
|
|
|
</div>
|
2016-06-11 16:04:18 -04:00
|
|
|
<div class="col-md-6">
|
2018-02-17 08:30:52 -05:00
|
|
|
<a class="text-book" href="{{ $page->book->getUrl() }}">@icon('book'){{ $page->book->getShortName(30) }}</a>
|
2016-02-20 13:51:01 -05:00
|
|
|
<br>
|
|
|
|
@if($page->chapter)
|
2018-02-17 08:30:52 -05:00
|
|
|
<a class="text-chapter" href="{{ $page->chapter->getUrl() }}">@icon('chapter'){{ $page->chapter->getShortName(30) }}</a>
|
2016-02-20 13:51:01 -05:00
|
|
|
@else
|
2018-02-17 08:30:52 -05:00
|
|
|
@icon('chapter') {{ trans('entities.pages_not_in_chapter') }}
|
2016-02-20 13:51:01 -05:00
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
2015-09-03 14:05:45 -04:00
|
|
|
</div>
|