forked from zuramai/mazer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-editor-ckeditor.html
51 lines (49 loc) · 1.68 KB
/
form-editor-ckeditor.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% set title = 'CKEditor' %}
{% set filename = 'form-editor-quill.html' %}
{% extends 'layouts/master.html' %}
{% block content %}
<div class="page-heading">
<div class="page-title">
<div class="row">
<div class="col-12 col-md-6 order-md-1 order-last">
<h3>CKEditor </h3>
<p class="text-subtitle text-muted">For user to check they list</p>
</div>
<div class="col-12 col-md-6 order-md-2 order-first">
<nav aria-label="breadcrumb" class="breadcrumb-header float-start float-lg-end">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Dashboard</a></li>
<li class="breadcrumb-item active" aria-current="page">CKEditor</li>
</ol>
</nav>
</div>
</div>
</div>
<section class="section">
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Classic Editor</h4>
</div>
<div class="card-body">
<div id="editor">
<p>This is some sample content.</p>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
{% endblock %}
{% block js %}
<script src="assets/vendors/ckeditor/ckeditor.js"></script>
<script>
ClassicEditor
.create(document.querySelector('#editor'))
.catch(error => {
console.error(error);
});
</script>
{% endblock %}