5 <div class="container anim fadeIn" ng-non-bindable>
7 <h1>Search Results <span class="text-muted">{{$searchTerm}}</span></h1>
10 <a href="/search/pages?term={{$searchTerm}}" class="text-page"><i class="zmdi zmdi-file-text"></i>View all matched pages</a>
12 @if(count($chapters) > 0)
14 <a href="/search/chapters?term={{$searchTerm}}" class="text-chapter"><i class="zmdi zmdi-collection-bookmark"></i>View all matched chapters</a>
17 @if(count($books) > 0)
19 <a href="/search/books?term={{$searchTerm}}" class="text-book"><i class="zmdi zmdi-book"></i>View all matched books</a>
24 <div class="col-md-6">
25 <h3><a href="/search/pages?term={{$searchTerm}}" class="no-color">Matching Pages</a></h3>
26 @include('partials/entity-list', ['entities' => $pages, 'style' => 'detailed'])
29 <div class="col-md-5 col-md-offset-1">
31 @if(count($books) > 0)
32 <h3><a href="/search/books?term={{$searchTerm}}" class="no-color">Matching Books</a></h3>
33 @include('partials/entity-list', ['entities' => $books])
36 @if(count($chapters) > 0)
37 <h3><a href="/search/chapters?term={{$searchTerm}}" class="no-color">Matching Chapters</a></h3>
38 @include('partials/entity-list', ['entities' => $chapters])