13 lines
431 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
2018-04-08 12:01:18 +02:00
Avatar(thread.Creator())
2017-06-13 00:06:35 +02:00
.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(href="/thread/" + thread.ID)= thread.Title
2017-06-13 00:06:35 +02:00
.spacer
2018-10-29 09:15:45 +09:00
.thread-reply-count= len(thread.PostIDs)
2017-06-13 00:06:35 +02:00
.thread-icons
Icon(arn.GetForumIcon(thread.Tags[0]))