2016-12-03 13:45:08 +00:00
|
|
|
{{template "header.html" . }}
|
2020-04-09 08:35:43 +00:00
|
|
|
<main id="forumsItemList"itemscope itemtype="http://schema.org/ItemList">
|
2017-08-20 09:39:02 +00:00
|
|
|
|
2017-03-01 11:36:50 +00:00
|
|
|
<div class="rowblock opthead">
|
2018-03-11 09:33:49 +00:00
|
|
|
<div class="rowitem"><h1 itemprop="name">{{lang "forums_head"}}</h1></div>
|
2017-03-01 11:36:50 +00:00
|
|
|
</div>
|
2017-10-30 09:57:08 +00:00
|
|
|
<div class="rowblock forum_list">
|
2020-05-26 07:53:56 +00:00
|
|
|
{{range .ItemList}}<div id="forum_{{.ID}}"class="rowitem{{if (.Desc) or (.LastTopic.Title)}} datarow{{end}}"itemprop="itemListElement"itemscope
|
2017-12-27 23:38:37 +00:00
|
|
|
itemtype="http://schema.org/ListItem">
|
2017-10-30 09:57:08 +00:00
|
|
|
<span class="forum_left shift_left">
|
2020-03-11 09:28:00 +00:00
|
|
|
<a href="{{.Link}}"itemprop="item">{{.Name}}</a><br>
|
2017-10-30 09:57:08 +00:00
|
|
|
{{if .Desc}}
|
2020-04-02 20:19:42 +00:00
|
|
|
<span class="rowsmall"itemprop="description">{{.Desc}}</span>
|
2017-10-30 09:57:08 +00:00
|
|
|
{{else}}
|
2018-11-28 21:46:53 +00:00
|
|
|
<span class="rowsmall forum_nodesc">{{lang "forums_no_description"}}</span>
|
2017-10-30 09:57:08 +00:00
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
<span class="forum_right shift_right">
|
2020-04-02 20:19:42 +00:00
|
|
|
{{if .LastReplyer.MicroAvatar}}<img class="extra_little_row_avatar"src="{{.LastReplyer.MicroAvatar}}"height=64 width=64 alt="Avatar"title="{{.LastReplyer.Name}}'s Avatar"aria-hidden="true">{{end}}
|
2017-10-30 09:57:08 +00:00
|
|
|
<span>
|
2020-04-10 21:48:30 +00:00
|
|
|
<a {{if .LastTopic.Link}}class="forum_poster"href="{{.LastTopic.Link}}"{{else}}class="forum_no_poster"{{end}}>{{if .LastTopic.Title}}{{.LastTopic.Title}}{{else}}{{lang "forums_none"}}{{end}}</a>
|
2020-04-02 20:19:42 +00:00
|
|
|
{{if .LastTopicTime}}<br><span class="rowsmall"title="{{abstime .LastTopic.LastReplyAt}}">{{.LastTopicTime}}</span>{{end}}
|
2017-10-30 09:57:08 +00:00
|
|
|
</span>
|
2020-03-11 09:28:00 +00:00
|
|
|
</span><div style="clear:both;"></div>
|
2016-12-21 02:30:32 +00:00
|
|
|
</div>
|
2018-03-11 09:33:49 +00:00
|
|
|
{{else}}<div class="rowitem passive rowmsg">{{lang "forums_no_forums"}}</div>{{end}}
|
2016-12-03 13:45:08 +00:00
|
|
|
</div>
|
2017-08-20 09:39:02 +00:00
|
|
|
|
|
|
|
</main>
|
2019-10-11 00:36:08 +00:00
|
|
|
{{template "footer.html" . }}
|