You need to sign in or sign up before continuing.
history.pug 531 Bytes
Newer Older
1 2 3 4 5 6 7
extends master.pug

block head

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