2018-08-11 17:16:56 -05:00
|
|
|
extends master.pug
|
2018-02-10 23:20:17 -06:00
|
|
|
|
2019-07-14 15:12:26 -05:00
|
|
|
block head
|
|
|
|
if injectCode.css
|
|
|
|
style(type='text/css')!= injectCode.css
|
|
|
|
|
2018-02-10 23:20:17 -06:00
|
|
|
block body
|
2018-08-11 17:16:56 -05:00
|
|
|
#root
|
2018-12-01 22:03:14 -06:00
|
|
|
editor(
|
|
|
|
:page-id=page.id
|
|
|
|
locale=page.localeCode
|
|
|
|
path=page.path
|
|
|
|
title=page.title
|
|
|
|
description=page.description
|
2019-09-01 17:38:09 -05:00
|
|
|
:tags=page.tags
|
2018-12-01 22:03:14 -06:00
|
|
|
:is-published=page.isPublished
|
|
|
|
init-mode=page.mode
|
|
|
|
init-editor=page.editorKey
|
|
|
|
init-content=page.content
|
2020-03-01 23:43:19 -06:00
|
|
|
checkout-date=page.updatedAt
|
2018-12-01 22:03:14 -06:00
|
|
|
)
|