]> BookStack Code Mirror - bookstack/blob - resources/views/common/detailed-listing-with-more.blade.php
Updated npm package versions
[bookstack] / resources / views / common / detailed-listing-with-more.blade.php
1 @extends('layouts.simple')
2
3 @section('body')
4     <div class="container small pt-xl">
5         <main class="card content-wrap">
6             <h1 class="list-heading">{{ $title }}</h1>
7
8             <div class="book-contents">
9                 @include('entities.list', ['entities' => $entities, 'style' => 'detailed'])
10             </div>
11
12             <div class="text-right">
13                 @if($hasMoreLink)
14                     <a href="{{ $hasMoreLink }}" class="button outline">{{ trans('common.more') }}</a>
15                 @endif
16             </div>
17         </main>
18     </div>
19 @stop