mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
a61c9c5e98
- Primarily moved and re-organised view files. - Included readme within views to document the convention. - Fixed some issues with page field select list in previous commit. - Tweaked some route names while going through. - Split some views out further. Closes #2805
26 lines
1.4 KiB
PHP
26 lines
1.4 KiB
PHP
{{--This view display child pages in a list if pre-loaded onto a 'visible_pages' property,--}}
|
|
{{--To ensure that the pages have been loaded efficiently with permissions taken into account.--}}
|
|
<a href="{{ $chapter->getUrl() }}" class="chapter entity-list-item @if($chapter->visible_pages->count() > 0) 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->visible_pages->count() > 0)
|
|
<div class="chapter chapter-expansion">
|
|
<span class="icon text-chapter">@icon('page')</span>
|
|
<div class="content">
|
|
<button type="button" chapter-toggle
|
|
aria-expanded="false"
|
|
class="text-muted chapter-expansion-toggle">@icon('caret-right') <span>{{ trans_choice('entities.x_pages', $chapter->visible_pages->count()) }}</span></button>
|
|
<div class="inset-list">
|
|
<div class="entity-list-item-children">
|
|
@include('entities.list', ['entities' => $chapter->visible_pages])
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif |