2017-08-26 16:41:33 +02:00
|
|
|
@extends('simple-layout')
|
|
|
|
|
|
|
|
@section('body')
|
2019-02-03 14:45:45 +01:00
|
|
|
<div class="container small pt-xl">
|
|
|
|
<div class="card content-wrap">
|
|
|
|
<h1 class="list-heading">{{ $title }}</h1>
|
|
|
|
|
|
|
|
<div class="book-contents">
|
|
|
|
@include('partials.entity-list', ['entities' => $pages, 'style' => 'detailed'])
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="text-center">
|
2016-02-20 19:51:01 +01:00
|
|
|
{!! $pages->links() !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@stop
|