2016-06-12 07:14:14 -04:00
|
|
|
<div class="chapter entity-list-item" data-entity-type="chapter" data-entity-id="{{$chapter->id}}">
|
2016-09-18 09:49:36 -04:00
|
|
|
<h4>
|
2016-07-03 04:58:45 -04:00
|
|
|
@if (isset($showPath) && $showPath)
|
|
|
|
<a href="{{ $chapter->book->getUrl() }}" class="text-book">
|
2018-02-17 08:30:52 -05:00
|
|
|
@icon('book'){{ $chapter->book->getShortName() }}
|
2016-07-03 04:58:45 -04:00
|
|
|
</a>
|
|
|
|
<span class="text-muted"> » </span>
|
|
|
|
@endif
|
2016-09-01 15:36:22 -04:00
|
|
|
<a href="{{ $chapter->getUrl() }}" class="text-chapter entity-list-item-link">
|
2018-02-17 08:30:52 -05:00
|
|
|
@icon('chapter')<span class="entity-list-item-name break-text">{{ $chapter->name }}</span>
|
2015-09-03 14:05:45 -04:00
|
|
|
</a>
|
2016-09-18 09:49:36 -04:00
|
|
|
</h4>
|
2017-08-06 16:08:03 -04:00
|
|
|
|
|
|
|
<div class="entity-item-snippet">
|
|
|
|
@if(isset($chapter->searchSnippet))
|
2018-02-11 09:28:26 -05:00
|
|
|
<p class="text-muted break-text">{!! $chapter->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">{{ $chapter->getExcerpt() }}</p>
|
2017-08-06 16:08:03 -04:00
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
|
2015-09-03 14:05:45 -04:00
|
|
|
|
2016-02-21 07:53:58 -05:00
|
|
|
@if(!isset($hidePages) && count($chapter->pages) > 0)
|
2018-02-17 14:49:00 -05:00
|
|
|
<p chapter-toggle class="text-muted">@icon('caret-right') @icon('page') <span>{{ trans_choice('entities.x_pages', $chapter->pages->count()) }}</span></p>
|
2015-09-03 14:05:45 -04:00
|
|
|
<div class="inset-list">
|
|
|
|
@foreach($chapter->pages as $page)
|
2018-02-17 08:30:52 -05:00
|
|
|
<h5 class="@if($page->draft) draft @endif"><a href="{{ $page->getUrl() }}" class="text-page @if($page->draft) draft @endif">@icon('page'){{$page->name}}</a></h5>
|
2015-09-03 14:05:45 -04:00
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div>
|