- <div class="container" ng-non-bindable>
- <div class="row">
- <div class="col-sm-7">
- <h1>Books</h1>
- @if(count($books) > 0)
- @foreach($books as $book)
- @include('books/list-item', ['book' => $book])
- <hr>
- @endforeach
- {!! $books->render() !!}
- @else
- <p class="text-muted">No books have been created.</p>
- @if(userCan('books-create-all'))
- <a href="{{ baseUrl("/books/create") }}" class="text-pos"><i class="zmdi zmdi-edit"></i>Create one now</a>
- @endif
- @endif
- </div>
- <div class="col-sm-4 col-sm-offset-1">
- <div id="recents">
- @if($recents)
- <div class="margin-top large"> </div>
- <h3>Recently Viewed</h3>
- @include('partials/entity-list', ['entities' => $recents])
- @endif
- </div>
- <div class="margin-top large"> </div>
- <div id="popular">
- <h3>Popular Books</h3>
- @if(count($popular) > 0)
- @include('partials/entity-list', ['entities' => $popular])
- @else
- <p class="text-muted">The most popular books will appear here.</p>
- @endif
- </div>
- </div>