mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
61577cf6bf
Added search result pages for pages, chapters and books. Limited the results on the global search as it just listed out an infinate amount. Fixed styling on new detailed page listings and also removed the 'bars' from the side to create a cleaner view. Fixed bad sql fulltext query format that may have thrown off searches. Reduced the number of database queries down a thousand or so.
21 lines
863 B
PHP
21 lines
863 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(!isset($hidePages) && count($chapter->pages) > 0)
|
|
<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>
|
|
<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> |