mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
61577cf6bf
Added search result pages for pages, chapters and books. Limited the results on the global search as it just listed out an infinate amount. Fixed styling on new detailed page listings and also removed the 'bars' from the side to create a cleaner view. Fixed bad sql fulltext query format that may have thrown off searches. Reduced the number of database queries down a thousand or so.
18 lines
449 B
PHP
18 lines
449 B
PHP
@extends('base')
|
|
|
|
@section('content')
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
|
|
<div class="col-sm-7">
|
|
<h1>{{ $title }} <small>{{$searchTerm}}</small></h1>
|
|
@include('partials.entity-list', ['entities' => $entities, 'style' => 'detailed'])
|
|
{!! $entities->links() !!}
|
|
</div>
|
|
|
|
<div class="col-sm-4 col-sm-offset-1"></div>
|
|
|
|
</div>
|
|
</div>
|
|
@stop |