]> BookStack Code Mirror - bookstack/blob - resources/views/common/detailed-listing-paginated.blade.php
Updated attachment links to have dropdown for open type
[bookstack] / resources / views / common / detailed-listing-paginated.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-center">
13                 {!! $entities->links() !!}
14             </div>
15         </main>
16     </div>
17 @stop