BookStack/resources/views/exports/book.blade.php
Dan Brown 88012449f3
Reorganised and split out export templates & styles
Moved export templates elements into their own folder for better
grouping of logical usage.
Within the base export template, added some body classes to allow easier
targeted customisation via custom head css.
Split content of export templates into smaller partials for easier
future customization.

Closes #3443
2022-06-08 17:56:59 +01:00

20 lines
561 B
PHP

@extends('layouts.export')
@section('title', $book->name)
@section('content')
<h1 style="font-size: 4.8em">{{$book->name}}</h1>
<p>{{ $book->description }}</p>
@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