20 lines
606 B
Plaintext
Raw Normal View History

component Forum(tag string, threads []*arn.Thread)
h2.forum-header Forum
ForumTags
2016-11-18 17:58:00 +00:00
each thread in threads
ThreadLink(thread)
component ThreadLink(thread *arn.Thread)
2016-11-19 08:49:00 +00:00
.thread-link(data-sticky=thread.Sticky)
2016-11-18 17:58:00 +00:00
.post-author.thread-author
Avatar(thread.Author)
.thread-content-container
.post-content.thread-content
if thread.Sticky
i.fa.fa-thumb-tack.fa-fw.thread-icon
a.thread-title.ajax(href="/threads/" + thread.ID)= thread.Title
//- .thread-icons
//- each icon in thread.Icons
//- i(class='fa fa-' + icon + ' fa-fw thread-icon')
//- .thread-reply-count= 25