2017-06-08 12:46:38 +00:00
|
|
|
component PostableList(postables []arn.Postable)
|
2017-06-22 14:21:26 +00:00
|
|
|
h2.thread-title= len(postables), " latest posts by ", postables[0].Author().Nick
|
|
|
|
.thread
|
|
|
|
.posts
|
|
|
|
each post in postables
|
|
|
|
.post
|
|
|
|
.post-author
|
|
|
|
Avatar(post.Author())
|
|
|
|
.post-content
|
2017-06-22 15:03:43 +00:00
|
|
|
p!= aero.Markdown(post.Text())
|
2017-06-22 14:21:26 +00:00
|
|
|
.post-toolbar
|
|
|
|
.spacer
|
|
|
|
.post-likes= len(post.Likes())
|
2017-06-22 15:03:43 +00:00
|
|
|
a.post-tool.post-permalink.ajax(href=post.Link(), title="Permalink")
|
|
|
|
Icon("link")
|
2017-06-22 14:21:26 +00:00
|
|
|
a.post-link.side-note.title.ajax(href="/posts/" + post.ID())= post.Title()
|