2015-09-03 14:05:45 -04:00
|
|
|
<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))
|
2015-11-29 13:06:55 -05:00
|
|
|
<p class="text-muted chapter-toggle"><i class="zmdi zmdi-caret-right"></i> <i class="zmdi zmdi-file-text"></i> <span>{{ count($chapter->pages) }} Pages</span></p>
|
2015-09-03 14:05:45 -04:00
|
|
|
<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>
|