BookStack/resources/views/pages/create.blade.php

20 lines
562 B
PHP
Raw Normal View History

2015-07-12 16:31:15 -04:00
@extends('base')
@section('head')
2015-12-28 11:16:27 -05:00
<script src="/libs/tinymce/tinymce.min.js?ver=4.3.2"></script>
2015-07-12 16:31:15 -04:00
@stop
2015-08-31 06:43:28 -04:00
@section('body-class', 'flexbox')
2015-07-12 16:31:15 -04:00
@section('content')
2015-08-31 06:43:28 -04:00
<div class="flex-fill flex" ng-non-bindable>
2015-08-31 06:43:28 -04:00
<form action="{{$book->getUrl() . '/page'}}" method="POST" class="flex flex-fill">
@include('pages/form')
@if($chapter)
<input type="hidden" name="chapter" value="{{$chapter->id}}">
@endif
</form>
</div>
2015-12-30 13:38:18 -05:00
@include('partials/image-manager', ['imageType' => 'gallery'])
2015-07-12 16:31:15 -04:00
@stop