19 lines
454 B
Plaintext
Raw Normal View History

2017-06-08 12:46:38 +00:00
component PostableList(postables []arn.Postable)
2017-06-22 14:21:26 +00:00
.thread
.posts
each post in postables
.post
.post-author
Avatar(post.Author())
2017-06-22 16:04:14 +00:00
2017-06-22 14:21:26 +00:00
.post-content
2017-06-22 15:03:43 +00:00
p!= aero.Markdown(post.Text())
2017-06-22 16:04:14 +00:00
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 16:04:14 +00:00
a.post-link.side-note.ajax(href=post.Link())= post.Title()