9 lines
249 B
Plaintext

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