2018-10-31 17:00:31 +01:00
|
|
|
#dash-menu
|
2018-11-11 00:08:00 +01:00
|
|
|
a#entries(href="/@/dashboard/posts")
|
2018-10-31 17:00:31 +01:00
|
|
|
svg(viewBox="0 0 20 20" class="icons")
|
|
|
|
use(xlink:href='/dash/assets/images/sprite.svg#entypo-book')
|
2018-11-11 00:08:00 +01:00
|
|
|
label Posts
|
2018-12-03 01:47:28 +01:00
|
|
|
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
|
2018-10-31 17:00:31 +01:00
|
|
|
a#menu(href="")
|
|
|
|
svg(viewBox="0 0 20 20" class="icons")
|
|
|
|
use(xlink:href='/dash/assets/images/sprite.svg#entypo-list')
|
|
|
|
label Menu
|
|
|
|
#dash-recent
|
|
|
|
#recent-list
|
|
|
|
h3 Recent
|
|
|
|
br
|
|
|
|
- var index = 0;
|
|
|
|
- for ( index; index < items.length; index++)
|
2018-12-06 22:49:49 +01:00
|
|
|
a(href="/@/dashboard/posts/edit/"+items[index].post.uuid id=items[index].post.uuid)
|
2018-11-26 23:14:13 +01:00
|
|
|
= items[index].post.title
|
2018-10-31 17:00:31 +01:00
|
|
|
br
|
|
|
|
br
|
|
|
|
|