5 <div class="container anim fadeIn">
7 <h1>Search Results <span class="text-muted">{{$searchTerm}}</span></h1>
11 <div class="col-md-6">
12 <h3>Matching Pages</h3>
13 <div class="page-list">
14 @if(count($pages) > 0)
15 @foreach($pages as $page)
16 <div class="book-child">
18 <a href="{{$page->getUrl() . '#' . $searchTerm}}" class="page">
19 <i class="zmdi zmdi-file-text"></i>{{$page->name}}
22 <p class="text-muted">
23 {!! $page->searchSnippet !!}
29 <p class="text-muted">No pages matched this search</p>
34 <div class="col-md-5 col-md-offset-1">
36 @if(count($books) > 0)
37 <h3>Matching Books</h3>
38 <div class="page-list">
39 @foreach($books as $book)
40 <div class="book-child">
42 <a href="{{$book->getUrl()}}" class="text-book">
43 <i class="zmdi zmdi-book"></i>{{$book->name}}
46 <p class="text-muted">
47 {!! $book->searchSnippet !!}
55 @if(count($chapters) > 0)
56 <h3>Matching Chapters</h3>
57 <div class="page-list">
58 @foreach($chapters as $chapter)
59 <div class="book-child">
61 <a href="{{$chapter->getUrl()}}" class="text-chapter">
62 <i class="zmdi zmdi-collection-bookmark"></i>{{$chapter->name}}
65 <p class="text-muted">
66 {!! $chapter->searchSnippet !!}