2017-06-22 14:38:01 -03:00

10 lines
234 B
Plaintext

component Thread(thread *arn.Thread, posts []*arn.Post)
h2.thread-title= thread.Title
.thread
.posts
Postable(thread.ToPostable(), thread.Author().ID)
each post in posts
Postable(post.ToPostable(), thread.Author().ID)