mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-08 09:26:42 +00:00
20 lines
573 B
PHP
20 lines
573 B
PHP
@extends('layouts.export')
|
|
|
|
@section('title', $book->name)
|
|
|
|
@section('content')
|
|
|
|
<h1 style="font-size: 4.8em">{{$book->name}}</h1>
|
|
<div>{!! $book->descriptionHtml() !!}</div>
|
|
|
|
@include('exports.parts.book-contents-menu', ['children' => $bookChildren])
|
|
|
|
@foreach($bookChildren as $bookChild)
|
|
@if($bookChild->isA('chapter'))
|
|
@include('exports.parts.chapter-item', ['chapter' => $bookChild])
|
|
@else
|
|
@include('exports.parts.page-item', ['page' => $bookChild, 'chapter' => null])
|
|
@endif
|
|
@endforeach
|
|
|
|
@endsection |