2016-11-19 14:54:31 +00:00
|
|
|
component Thread(thread *arn.Thread, posts []*arn.Post)
|
2016-12-02 06:24:45 +00:00
|
|
|
h2.thread-title= thread.Title
|
|
|
|
|
2016-11-19 08:49:00 +00:00
|
|
|
.thread
|
|
|
|
.posts
|
2016-11-22 03:34:59 +00:00
|
|
|
Postable(thread.ToPostable(), nil, thread.Author().ID)
|
2016-11-19 08:49:00 +00:00
|
|
|
|
2016-11-19 14:54:31 +00:00
|
|
|
each post in posts
|
2016-11-22 03:34:59 +00:00
|
|
|
Postable(post.ToPostable(), nil, thread.Author().ID)
|