X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/2a882a43ffc0a9d94f6936d1d557a7fec65e62d2..refs/pull/5681/head:/resources/views/books/index.blade.php diff --git a/resources/views/books/index.blade.php b/resources/views/books/index.blade.php index b1998da3b..197de011d 100644 --- a/resources/views/books/index.blade.php +++ b/resources/views/books/index.blade.php @@ -1,49 +1,62 @@ -@extends('tri-layout') +@extends('layouts.tri') + +@section('body') + @include('books.parts.list', ['books' => $books, 'view' => $view, 'listOptions' => $listOptions]) +@stop @section('left') @if($recents)
{{ trans('entities.recently_viewed') }}
- @include('partials.entity-list', ['entities' => $recents, 'style' => 'compact']) + @include('entities.list', ['entities' => $recents, 'style' => 'compact'])
@endif
{{ trans('entities.books_new') }}
- @if(count($popular) > 0) - @include('partials.entity-list', ['entities' => $new, 'style' => 'compact']) + @if(count($new) > 0) + @include('entities.list', ['entities' => $new, 'style' => 'compact']) @else -
{{ trans('entities.books_new_empty') }}
+

{{ trans('entities.books_new_empty') }}

@endif
@stop -@section('body') - @include('books.list', ['books' => $books, 'bookViewType' => $booksViewType]) -@stop - @section('right') -
-
Actions
-
- @if($currentUser->can('book-create-all')) - - @icon('add') +
+
{{ trans('common.actions') }}
+
-@stop \ No newline at end of file +@stop