9 lines
246 B
Plaintext
Raw Normal View History

2016-11-19 23:54:31 +09:00
component Thread(thread *arn.Thread, posts []*arn.Post)
h2.thread-title= thread.Title
2016-11-19 17:49:00 +09:00
.thread
.posts
Postable(thread.ToPostable(), nil, thread.Author().ID)
2016-11-19 17:49:00 +09:00
2016-11-19 23:54:31 +09:00
each post in posts
Postable(post.ToPostable(), nil, thread.Author().ID)