2015-08-31 15:11:44 -04:00
|
|
|
@extends('base')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2015-12-30 16:38:20 -05:00
|
|
|
<div class="container anim fadeIn" ng-non-bindable>
|
2015-08-31 15:11:44 -04:00
|
|
|
|
|
|
|
<h1>Search Results <span class="text-muted">{{$searchTerm}}</span></h1>
|
|
|
|
|
2016-02-21 07:53:58 -05:00
|
|
|
<p>
|
2016-03-13 10:00:24 -04:00
|
|
|
|
|
|
|
@if(count($pages) > 0)
|
|
|
|
<a href="/search/pages?term={{$searchTerm}}" class="text-page"><i class="zmdi zmdi-file-text"></i>View all matched pages</a>
|
|
|
|
@endif
|
|
|
|
|
2016-02-21 07:53:58 -05:00
|
|
|
|
|
|
|
@if(count($chapters) > 0)
|
|
|
|
|
|
|
|
<a href="/search/chapters?term={{$searchTerm}}" class="text-chapter"><i class="zmdi zmdi-collection-bookmark"></i>View all matched chapters</a>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if(count($books) > 0)
|
|
|
|
|
|
|
|
<a href="/search/books?term={{$searchTerm}}" class="text-book"><i class="zmdi zmdi-book"></i>View all matched books</a>
|
|
|
|
@endif
|
|
|
|
</p>
|
2015-08-31 15:11:44 -04:00
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
2016-02-21 07:53:58 -05:00
|
|
|
<h3><a href="/search/pages?term={{$searchTerm}}" class="no-color">Matching Pages</a></h3>
|
|
|
|
@include('partials/entity-list', ['entities' => $pages, 'style' => 'detailed'])
|
2015-08-31 15:11:44 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-5 col-md-offset-1">
|
|
|
|
|
|
|
|
@if(count($books) > 0)
|
2016-02-21 07:53:58 -05:00
|
|
|
<h3><a href="/search/books?term={{$searchTerm}}" class="no-color">Matching Books</a></h3>
|
|
|
|
@include('partials/entity-list', ['entities' => $books])
|
2015-08-31 15:11:44 -04:00
|
|
|
@endif
|
|
|
|
|
|
|
|
@if(count($chapters) > 0)
|
2016-02-21 07:53:58 -05:00
|
|
|
<h3><a href="/search/chapters?term={{$searchTerm}}" class="no-color">Matching Chapters</a></h3>
|
|
|
|
@include('partials/entity-list', ['entities' => $chapters])
|
2015-08-31 15:11:44 -04:00
|
|
|
@endif
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
@stop
|