BookStack/resources/views/books/index.blade.php

47 lines
1.6 KiB
PHP
Raw Normal View History

2017-08-20 12:57:25 +00:00
@extends('sidebar-layout')
2015-07-12 19:01:42 +00:00
2017-08-20 12:57:25 +00:00
@section('toolbar')
<div class="col-xs-6">
<div class="action-buttons text-left">
@include('books/view-toggle', ['booksViewType' => $booksViewType])
</div>
</div>
<div class="col-xs-6 faded">
<div class="action-buttons">
2017-08-20 12:57:25 +00:00
@if($currentUser->can('book-create-all'))
<a href="{{ baseUrl("/create-book") }}" class="text-pos text-button">@icon('add'){{ trans('entities.books_create') }}</a>
2017-08-20 12:57:25 +00:00
@endif
</div>
</div>
@stop
2015-07-12 19:01:42 +00:00
2017-08-20 12:57:25 +00:00
@section('sidebar')
@if($recents)
<div id="recents" class="card">
<h3>@icon('view') {{ trans('entities.recently_viewed') }}</h3>
2017-08-20 12:57:25 +00:00
@include('partials/entity-list', ['entities' => $recents, 'style' => 'compact'])
2015-07-12 19:01:42 +00:00
</div>
2017-08-20 12:57:25 +00:00
@endif
<div id="popular" class="card">
<h3>@icon('popular') {{ trans('entities.books_popular') }}</h3>
2017-08-20 12:57:25 +00:00
@if(count($popular) > 0)
@include('partials/entity-list', ['entities' => $popular, 'style' => 'compact'])
@else
<div class="body text-muted">{{ trans('entities.books_popular_empty') }}</div>
@endif
</div>
<div id="new" class="card">
<h3>@icon('star-circle') {{ trans('entities.books_new') }}</h3>
@if(count($popular) > 0)
@include('partials/entity-list', ['entities' => $new, 'style' => 'compact'])
@else
<div class="body text-muted">{{ trans('entities.books_new_empty') }}</div>
@endif
</div>
2017-08-20 12:57:25 +00:00
@stop
2015-07-12 19:01:42 +00:00
2017-08-20 12:57:25 +00:00
@section('body')
@include('books/list', ['books' => $books, 'bookViewType' => $booksViewType])
2015-07-12 19:01:42 +00:00
@stop