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.

21 lines
531 B

  1. extends master.pug
  2. block head
  3. block body
  4. #root
  5. history(
  6. :page-id=page.id
  7. locale=page.localeCode
  8. path=page.path
  9. title=page.title
  10. description=page.description
  11. :tags=page.tags
  12. created-at=page.createdAt
  13. updated-at=page.updatedAt
  14. author-name=page.authorName
  15. :author-id=page.authorId
  16. :is-published=page.isPublished.toString()
  17. live-content=page.content
  18. effective-permissions=Buffer.from(JSON.stringify(effectivePermissions)).toString('base64')
  19. )