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