10 lines
234 B
Plaintext
Raw Normal View History

2016-11-19 14:54:31 +00:00
component Thread(thread *arn.Thread, posts []*arn.Post)
h2.thread-title= thread.Title
2016-11-19 08:49:00 +00:00
.thread
.posts
2017-06-22 17:38:01 +00:00
Postable(thread.ToPostable(), thread.Author().ID)
2016-11-19 14:54:31 +00:00
each post in posts
2017-06-22 17:38:01 +00:00
Postable(post.ToPostable(), thread.Author().ID)