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.

31 lines
744 B

  1. extends ../layout.pug
  2. block rootNavCenter
  3. h2.nav-item= pageData.meta.title
  4. block rootNavRight
  5. i.nav-item#notifload
  6. span.nav-item
  7. if rights.write
  8. a.button.is-outlined.btn-move-prompt.is-hidden
  9. i.icon-shuffle
  10. span Move
  11. a.button.is-outlined(href='/' + pageData.meta.path)
  12. i.icon-loader
  13. span Normal View
  14. if rights.write
  15. a.button.is-orange(href='/edit/' + pageData.meta.path)
  16. i.fa.fa-edit
  17. span Edit
  18. a.button.is-blue.btn-create-prompt
  19. i.fa.fa-plus
  20. span Create
  21. block content
  22. #page-type-source(data-entrypath=pageData.meta.path)
  23. .ace-container
  24. #source-display= pageData.markdown
  25. include ../modals/create.pug
  26. include ../modals/move.pug