30 lines
658 B
Plaintext
Raw Normal View History

extends master.pug
block head
2019-01-25 21:29:34 -05:00
if injectCode.css
style(type='text/css')!= injectCode.css
if injectCode.head
!= injectCode.head
block body
#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()
: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
)
template(slot='contents')
div(v-pre)!= page.render
2019-01-25 21:29:34 -05:00
if injectCode.body
!= injectCode.body