wikijs-fork/server/views/history.pug

22 lines
531 B
Plaintext
Raw Normal View History

2018-10-29 02:09:58 +00:00
extends master.pug
block head
block body
#root
history(
2018-11-25 06:28:20 +00:00
:page-id=page.id
2018-10-29 02:09:58 +00:00
locale=page.localeCode
path=page.path
2020-02-29 23:57:54 +00:00
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()
2018-11-25 06:28:20 +00:00
live-content=page.content
effective-permissions=Buffer.from(JSON.stringify(effectivePermissions)).toString('base64')
2018-10-29 02:09:58 +00:00
)