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

20 lines
562 B
PHP
Raw Normal View History

2015-07-12 22:31:15 +02:00
@extends('base')
@section('head')
2015-12-28 17:16:27 +01:00
<script src="/libs/tinymce/tinymce.min.js?ver=4.3.2"></script>
2015-07-12 22:31:15 +02:00
@stop
2015-08-31 12:43:28 +02:00
@section('body-class', 'flexbox')
2015-07-12 22:31:15 +02:00
@section('content')
2015-08-31 12:43:28 +02:00
<div class="flex-fill flex" ng-non-bindable>
2015-08-31 12:43:28 +02: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 19:38:18 +01:00
@include('partials/image-manager', ['imageType' => 'gallery'])
2015-07-12 22:31:15 +02:00
@stop