form_text_editor.html 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <!-- start: PAGE TITLE -->
  2. <section id="page-title">
  3. <div class="row">
  4. <div class="col-sm-8">
  5. <h1 class="mainTitle" translate="sidebar.nav.forms.TEXTEDITOR">{{ mainTitle }}</h1>
  6. <span class="mainDescription">CKEditor directive for Angular.</span>
  7. </div>
  8. <div ncy-breadcrumb></div>
  9. </div>
  10. </section>
  11. <!-- end: PAGE TITLE -->
  12. <!-- start: TEXT EDITOR -->
  13. <div class="container-fluid container-fullw bg-white">
  14. <div class="row">
  15. <div class="col-md-12">
  16. <h5 class="over-title">WYSIWYG <span class="text-bold">Editor</span></h5>
  17. <p class="margin-bottom-30">
  18. CKEditor is a ready-for-use HTML text editor designed to simplify web content creation. It's a WYSIWYG editor that brings common word processor features directly to your web pages. Enhance your website experience with our community maintained editor.
  19. </p>
  20. <!-- /// controller: 'CkeditorCtrl' - localtion: assets/js/controllers/ckeditorCtrl.js /// -->
  21. <div ng-controller="CkeditorCtrl">
  22. <div ckeditor="options" ng-model="content" ready="onReady()"></div>
  23. <div class="well margin-top-20">
  24. {{content}}
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. <!-- end: TEXT EDITOR -->