mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
16 lines
395 B
PHP
16 lines
395 B
PHP
|
@extends('layouts.export')
|
||
|
|
||
|
@section('title', $chapter->name)
|
||
|
|
||
|
@section('content')
|
||
|
|
||
|
<h1 style="font-size: 4.8em">{{$chapter->name}}</h1>
|
||
|
<p>{{ $chapter->description }}</p>
|
||
|
|
||
|
@include('exports.parts.chapter-contents-menu', ['pages' => $pages])
|
||
|
|
||
|
@foreach($pages as $page)
|
||
|
@include('exports.parts.page-item', ['page' => $page, 'chapter' => null])
|
||
|
@endforeach
|
||
|
|
||
|
@endsection
|