2018-08-11 22:16:56 +00:00
|
|
|
extends master.pug
|
2018-08-09 04:07:15 +00:00
|
|
|
|
|
|
|
block head
|
2019-01-26 02:29:34 +00:00
|
|
|
if injectCode.css
|
|
|
|
style(type='text/css')!= injectCode.css
|
|
|
|
if injectCode.head
|
|
|
|
!= injectCode.head
|
2018-08-09 04:07:15 +00:00
|
|
|
|
|
|
|
block body
|
2018-08-11 22:16:56 +00:00
|
|
|
#root
|
2018-08-20 05:02:57 +00:00
|
|
|
page(
|
|
|
|
locale=page.localeCode
|
|
|
|
path=page.path
|
|
|
|
title=page.title
|
|
|
|
description=page.description
|
2019-09-02 22:32:33 +00:00
|
|
|
:tags=page.tags
|
2018-08-20 05:02:57 +00:00
|
|
|
created-at=page.createdAt
|
|
|
|
updated-at=page.updatedAt
|
|
|
|
author-name=page.authorName
|
2018-09-16 22:36:15 +00:00
|
|
|
:author-id=page.authorId
|
2018-12-02 04:03:14 +00:00
|
|
|
:is-published=page.isPublished.toString()
|
2018-11-18 04:03:58 +00:00
|
|
|
:toc=page.toc
|
2019-01-26 23:35:56 +00:00
|
|
|
:page-id=page.id
|
2019-08-04 17:54:23 +00:00
|
|
|
:sidebar=sidebar
|
2018-08-20 05:02:57 +00:00
|
|
|
)
|
2019-05-25 02:47:45 +00:00
|
|
|
template(slot='contents')
|
|
|
|
div(v-pre)!= page.render
|
2019-01-26 02:29:34 +00:00
|
|
|
if injectCode.body
|
|
|
|
!= injectCode.body
|