]> BookStack Code Mirror - bookstack/blob - resources/views/pages/detailed-listing.blade.php
Polish translation
[bookstack] / resources / views / pages / detailed-listing.blade.php
1 @extends('base')
2
3 @section('content')
4
5     <div class="container">
6         <div class="row">
7
8             <div class="col-sm-7">
9                 <h1>{{ $title }}</h1>
10                 @include('partials/entity-list', ['entities' => $pages, 'style' => 'detailed'])
11                 {!! $pages->links() !!}
12             </div>
13
14             <div class="col-sm-4 col-sm-offset-1"></div>
15
16         </div>
17     </div>
18 @stop