You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
415 B

  1. extends master.pug
  2. block head
  3. if injectCode.css
  4. style(type='text/css')!= injectCode.css
  5. block body
  6. #root
  7. editor(
  8. :page-id=page.id
  9. locale=page.localeCode
  10. path=page.path
  11. title=page.title
  12. description=page.description
  13. tags=page.tags
  14. :is-published=page.isPublished
  15. init-mode=page.mode
  16. init-editor=page.editorKey
  17. init-content=page.content
  18. )