mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 23:49:37 +00:00
10 lines
335 B
PHP
10 lines
335 B
PHP
<div class="page-break"></div>
|
|
<h1 id="chapter-{{$chapter->id}}">{{ $chapter->name }}</h1>
|
|
|
|
<div>{!! $chapter->descriptionHtml() !!}</div>
|
|
|
|
@if(count($chapter->visible_pages) > 0)
|
|
@foreach($chapter->visible_pages as $page)
|
|
@include('exports.parts.page-item', ['page' => $page, 'chapter' => $chapter])
|
|
@endforeach
|
|
@endif |