mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
638 B
24 lines
638 B
extends ../layout.pug
|
|
|
|
block content
|
|
.container.is-fluid.has-collapsable-nav
|
|
.sidebar.is-collapsed
|
|
aside
|
|
.sidebar-label
|
|
span= t('sidebar.nav')
|
|
ul.sidebar-menu
|
|
li
|
|
a(href='/')
|
|
i.nc-icon-outline.ui-1_home-minimal
|
|
span= t('nav.root')
|
|
if !isGuest
|
|
li
|
|
a(href='/admin')
|
|
i.nc-icon-outline.ui-1_settings-gear-63
|
|
span= t('nav.account')
|
|
else
|
|
li
|
|
a(href='/login')
|
|
i.nc-icon-outline.arrows-1_log-in
|
|
span= t('nav.login')
|
|
tree
|