mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
15 lines
387 B
PHP
15 lines
387 B
PHP
@extends('simple-layout')
|
|
|
|
@section('body')
|
|
<div class="container small">
|
|
<p> </p>
|
|
<div class="card">
|
|
<h3>{{ $title }}</h3>
|
|
@include('partials/entity-list', ['entities' => $pages, 'style' => 'detailed'])
|
|
<div class="body text-center">
|
|
{!! $pages->links() !!}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
@stop |