forked from projects/fipamo
25 lines
801 B
Text
25 lines
801 B
Text
#dash-menu
|
|
a#entries(href="/@/dashboard/posts")
|
|
svg(viewBox="0 0 20 20" class="icons")
|
|
use(xlink:href='/dash/assets/images/sprite.svg#entypo-book')
|
|
label Posts
|
|
a#settings(href="/@/dashboard/settings")
|
|
svg(viewBox="0 0 20 20" class="icons")
|
|
use(xlink:href='/dash/assets/images/sprite.svg#entypo-cog')
|
|
label Settings
|
|
a#navigation(href="/@/dashboard/navigation")
|
|
svg(viewBox="0 0 20 20" class="icons")
|
|
use(xlink:href='/dash/assets/images/sprite.svg#entypo-list')
|
|
label Navigation
|
|
#dash-recent
|
|
#recent-list
|
|
h3 Recent
|
|
br
|
|
- var index = 0;
|
|
- for ( index; index < items.length; index++)
|
|
a(href="/@/dashboard/posts/edit/"+items[index].post.uuid id=items[index].post.uuid)
|
|
= items[index].post.title
|
|
br
|
|
br
|
|
|