fipamo/themes/dash/partials/front.pug

12 lines
453 B
Text
Raw Normal View History

2018-10-31 17:00:31 +01:00
#dash-recent
#recent-list
h3 Recent
2019-01-31 18:36:59 +01:00
- var index = 0;
- var cap = 4; // number of respect posts to display
- for ( index; index < cap; index++)
a(href="/@/dashboard/posts/edit/"+items[index].post.uuid id=items[index].post.uuid)
div(style="background:url("+items[index].post.feature.substr(8)+") no-repeat center center / cover")
2019-01-31 18:36:59 +01:00
label= items[index].post.title
span= items[index].post.created
2018-10-31 17:00:31 +01:00