mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 04:13:42 +01:00
21 lines
819 B
PHP
21 lines
819 B
PHP
<div class="chapter">
|
|
<h3>
|
|
<a href="{{ $chapter->getUrl() }}" class="text-chapter">
|
|
<i class="zmdi zmdi-collection-bookmark"></i>{{ $chapter->name }}
|
|
</a>
|
|
</h3>
|
|
@if(isset($chapter->searchSnippet))
|
|
<p class="text-muted">{!! $chapter->searchSnippet !!}</p>
|
|
@else
|
|
<p class="text-muted">{{ $chapter->getExcerpt() }}</p>
|
|
@endif
|
|
|
|
@if(count($chapter->pages) > 0 && !isset($hidePages))
|
|
<p class="text-muted chapter-toggle open"><i class="zmdi zmdi-caret-right"></i> {{ count($chapter->pages) }} Pages</p>
|
|
<div class="inset-list">
|
|
@foreach($chapter->pages as $page)
|
|
<h4><a href="{{$page->getUrl()}}"><i class="zmdi zmdi-file-text"></i>{{$page->name}}</a></h4>
|
|
@endforeach
|
|
</div>
|
|
@endif
|
|
</div> |