]> BookStack Code Mirror - bookstack/blob - resources/views/exports/chapter.blade.php
respective book and chapter structure added.
[bookstack] / resources / views / exports / chapter.blade.php
1 @extends('layouts.export')
2
3 @section('title', $chapter->name)
4
5 @section('content')
6
7     <h1 style="font-size: 4.8em">{{$chapter->name}}</h1>
8     <div>{!! $chapter->descriptionHtml() !!}</div>
9
10     @include('exports.parts.chapter-contents-menu', ['pages' => $pages])
11
12     @foreach($pages as $page)
13         @include('exports.parts.page-item', ['page' => $page, 'chapter' => null])
14     @endforeach
15
16 @endsection