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.

16 lines
523 B

extends ../../layouts/main-sidebar
block content
include ../../components/pagination-bar
include components/list
div(uk-grid).uk-flex-expand
.uk-width-expand
h3.uk-margin-remove= `Posts by ${author.username}`
if Array.isArray(posts) && (posts.length > 0)
ul.uk-list.uk-list-divider
each post in posts
li
+renderPostSummaryFull(post)
.uk-card-footer
+renderPaginationBar(`/post/author/${author.username}`, posts.length )