Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. CKEDITOR.addTemplates( 'template', {
  2. templates: [ {
  3. title: 'BLEBELLBELBE',
  4. description: 'A template that defines two columns, each one with a title, and some text.',
  5. html: '<table cellspacing="0" cellpadding="0" style="width:100%" border="0">' +
  6. '<tr>' +
  7. '<td style="width:50%">' +
  8. '<h3>Title 1</h3>' +
  9. '</td>' +
  10. '<td></td>' +
  11. '<td style="width:50%">' +
  12. '<h3>Title 2</h3>' +
  13. '</td>' +
  14. '</tr>' +
  15. '<tr>' +
  16. '<td>' +
  17. 'Text 1' +
  18. '</td>' +
  19. '<td></td>' +
  20. '<td>' +
  21. 'Text 2' +
  22. '</td>' +
  23. '</tr>' +
  24. '</table>' +
  25. '<p>' +
  26. 'More text goes here.' +
  27. '</p>'
  28. } ]
  29. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement