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