mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
bda8aa414b
- Also updated chapter pages in books view to show detail
22 lines
1.1 KiB
PHP
22 lines
1.1 KiB
PHP
<a href="{{ $chapter->getUrl() }}" class="chapter entity-list-item @if($chapter->hasChildren()) has-children @endif" data-entity-type="chapter" data-entity-id="{{$chapter->id}}">
|
|
<span class="icon text-chapter">@icon('chapter')</span>
|
|
<div class="content">
|
|
<h4 class="entity-list-item-name break-text">{{ $chapter->name }}</h4>
|
|
<div class="entity-item-snippet">
|
|
<p class="text-muted break-text mb-s">{{ $chapter->getExcerpt() }}</p>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
@if ($chapter->hasChildren())
|
|
<div class="chapter chapter-expansion">
|
|
<span class="icon text-chapter">@icon('page')</span>
|
|
<div class="content">
|
|
<div chapter-toggle class="text-muted chapter-expansion-toggle">@icon('caret-right') <span>{{ trans_choice('entities.x_pages', $chapter->pages->count()) }}</span></div>
|
|
<div class="inset-list">
|
|
<div class="entity-list-item-children">
|
|
@include('partials.entity-list', ['entities' => $chapter->pages])
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif |