mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
1a9f676416
Fixes #758
26 lines
854 B
PHP
26 lines
854 B
PHP
@extends('simple-layout')
|
|
|
|
@section('toolbar')
|
|
<div class="col-sm-12 faded">
|
|
<div class="breadcrumbs">
|
|
<a href="{{ $book->getUrl() }}" class="text-book text-button">@icon('book'){{ $book->getShortName() }}</a>
|
|
<span class="sep">»</span>
|
|
<a href="{{ $book->getUrl('/create-chapter')}}" class="text-button">@icon('add'){{ trans('entities.chapters_create') }}</a>
|
|
</div>
|
|
</div>
|
|
@stop
|
|
|
|
@section('body')
|
|
|
|
<div class="container small" ng-non-bindable>
|
|
<div class="card">
|
|
<h3>@icon('add') {{ trans('entities.chapters_create') }}</h3>
|
|
<div class="body">
|
|
<form action="{{ $book->getUrl('/create-chapter') }}" method="POST">
|
|
@include('chapters/form')
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@stop |