@extends('base')
@section('head')
- <link rel="stylesheet" href="/plugins/css/froala_editor.min.css">
- <link rel="stylesheet" href="/plugins/css/froala_style.min.css">
- <script src="/plugins/js/froala_editor.min.js"></script>
+ <script src="/libs/tinymce/tinymce.min.js"></script>
@stop
+@section('body-class', 'flexbox')
+
@section('content')
- <form action="{{$book->getUrl() . '/page'}}" method="POST">
- @include('pages/form')
- </form>
- <script>
- $(function() {
- $('#html').editable({inlineMode: false});
- });
- </script>
+ <div class="flex-fill flex">
+ <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>
+ <image-manager image-type="gallery"></image-manager>
@stop
\ No newline at end of file