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