13 lines
433 B
Plaintext
Raw Normal View History

2017-06-13 00:06:35 +02:00
component ThreadLink(thread *arn.Thread)
2017-06-20 20:13:04 +02:00
.thread-link.mountable(data-sticky=thread.Sticky)
2017-06-13 00:06:35 +02:00
.post-author.thread-author
Avatar(thread.Author())
.thread-content-container
.thread-content
2017-06-27 03:05:52 +02:00
if thread.Sticky != 0
2017-06-13 00:06:35 +02:00
Icon("thumb-tack")
a.thread-link-title.ajax(href="/thread/" + thread.ID)= thread.Title
2017-06-13 00:06:35 +02:00
.spacer
2017-06-26 23:41:16 +02:00
.thread-reply-count= len(thread.Posts)
2017-06-13 00:06:35 +02:00
.thread-icons
Icon(arn.GetForumIcon(thread.Tags[0]))