5 <div class="container anim fadeIn" ng-non-bindable>
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 @include('pages/list-item', ['page' => $page, 'showMeta' => true])
20 <p class="text-muted">No pages matched this search</p>
25 <div class="col-md-5 col-md-offset-1">
27 @if(count($books) > 0)
28 <h3>Matching Books</h3>
29 <div class="page-list">
30 @foreach($books as $book)
31 @include('books/list-item', ['book' => $book])
37 @if(count($chapters) > 0)
38 <h3>Matching Chapters</h3>
39 <div class="page-list">
40 @foreach($chapters as $chapter)
41 @include('chapters/list-item', ['chapter' => $chapter, 'hidePages' => true])