5 <div class="container anim fadeIn" ng-non-bindable>
7 <h1>Search Results <span class="text-muted">{{ $searchTerm }}</span></h1>
11 @if(count($pages) > 0)
12 <a href="{{ baseUrl("/search/pages?term={$searchTerm}") }}" class="text-page"><i class="zmdi zmdi-file-text"></i>View all matched pages</a>
16 @if(count($chapters) > 0)
18 <a href="{{ baseUrl("/search/chapters?term={$searchTerm}") }}" class="text-chapter"><i class="zmdi zmdi-collection-bookmark"></i>View all matched chapters</a>
21 @if(count($books) > 0)
23 <a href="{{ baseUrl("/search/books?term={$searchTerm}") }}" class="text-book"><i class="zmdi zmdi-book"></i>View all matched books</a>
28 <div class="col-md-6">
29 <h3><a href="{{ baseUrl("/search/pages?term={$searchTerm}") }}" class="no-color">Matching Pages</a></h3>
30 @include('partials/entity-list', ['entities' => $pages, 'style' => 'detailed'])
33 <div class="col-md-5 col-md-offset-1">
35 @if(count($books) > 0)
36 <h3><a href="{{ baseUrl("/search/books?term={$searchTerm}") }}" class="no-color">Matching Books</a></h3>
37 @include('partials/entity-list', ['entities' => $books])
40 @if(count($chapters) > 0)
41 <h3><a href="{{ baseUrl("/search/chapters?term={$searchTerm}") }}" class="no-color">Matching Chapters</a></h3>
42 @include('partials/entity-list', ['entities' => $chapters])