wikijs-fork/views/pages/view.pug

66 lines
1.5 KiB
Plaintext
Raw Normal View History

extends ../layout.pug
2016-08-18 03:52:23 +00:00
mixin tocMenu(ti)
each node in ti
li
a(href='#' + node.anchor, title=node.content)= node.content
if node.nodes.length > 0
ul
+tocMenu(node.nodes)
2016-08-28 01:46:10 +00:00
block rootNavRight
2016-08-28 15:27:05 +00:00
i.nav-item#notifload
2016-09-09 23:22:18 +00:00
a.nav-item.btn-move-prompt.is-hidden
| Move
a.nav-item(href='/source/' + pageData.meta.path)
2016-08-28 01:46:10 +00:00
| Source
span.nav-item
a.button(href='/edit/' + pageData.meta.path)
span.icon
i.fa.fa-edit
span Edit
a.button.is-primary.btn-create-prompt
2016-08-28 01:46:10 +00:00
span.icon
i.fa.fa-plus
span Create
2016-08-18 03:52:23 +00:00
block content
2016-08-29 05:21:35 +00:00
#page-type-view(data-entrypath=pageData.meta.path)
2016-08-28 15:27:05 +00:00
section.section
.container.is-fluid
.columns
2016-08-18 03:52:23 +00:00
2016-08-28 15:27:05 +00:00
.column.is-narrow.sd-menus.is-hidden-touch
2016-08-18 03:52:23 +00:00
2016-08-28 15:27:05 +00:00
.box
aside.menu(style= { 'min-width': '200px' })
p.menu-label
| Navigation
ul.menu-list
2016-08-28 01:46:10 +00:00
li
2016-08-28 15:27:05 +00:00
a(href='/') Home
if pageData.parent
li
a(href='/' + pageData.parent.path)= pageData.parent.title
li
a(href='/account') Account
.box.stickyscroll(data-margin-top=70)
aside.menu(style= { 'min-width': '200px' })
p.menu-label
| Contents
ul.menu-list
a(href='#root', title='Start') Start
+tocMenu(pageData.tree)
2016-08-18 03:52:23 +00:00
2016-08-28 15:27:05 +00:00
.column
2016-08-28 15:27:05 +00:00
h1.title#title= pageData.meta.title
if pageData.meta.subtitle
h2.subtitle= pageData.meta.subtitle
.content.mkcontent
!= pageData.html
2016-08-18 03:52:23 +00:00
include ../modals/create.pug
2016-09-09 23:22:18 +00:00
include ../modals/move.pug