2016-12-03 13:45:08 +00:00
|
|
|
{{template "header.html" . }}
|
2018-03-08 03:59:47 +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">
|
2017-12-27 23:38:37 +00:00
|
|
|
<div class="rowitem"><h1 itemprop="name">Forums</h1></div>
|
2017-03-01 11:36:50 +00:00
|
|
|
</div>
|
2017-10-30 09:57:08 +00:00
|
|
|
<div class="rowblock forum_list">
|
2017-12-27 23:38:37 +00:00
|
|
|
{{range .ItemList}}<div class="rowitem {{if (.Desc) or (.LastTopic.Title)}}datarow {{end}}"itemprop="itemListElement" itemscope
|
|
|
|
itemtype="http://schema.org/ListItem">
|
2017-10-30 09:57:08 +00:00
|
|
|
<span class="forum_left shift_left">
|
2017-12-27 23:38:37 +00:00
|
|
|
<a href="{{.Link}}" itemprop="item">{{.Name}}</a>
|
2017-10-30 09:57:08 +00:00
|
|
|
{{if .Desc}}
|
2017-12-27 23:38:37 +00:00
|
|
|
<br /><span class="rowsmall" itemprop="description">{{.Desc}}</span>
|
2017-10-30 09:57:08 +00:00
|
|
|
{{else}}
|
2017-07-17 10:23:42 +00:00
|
|
|
<br /><span class="rowsmall" style="font-style: italic;">No description</span>
|
2017-10-30 09:57:08 +00:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2017-06-05 11:57:27 +00:00
|
|
|
|
2017-10-30 09:57:08 +00:00
|
|
|
<span class="forum_right shift_right">
|
2017-12-22 03:32:23 +00:00
|
|
|
{{if .LastReplyer.Avatar}}<img class="extra_little_row_avatar" src="{{.LastReplyer.Avatar}}" height=64 width=64 alt="{{.LastReplyer.Name}}'s Avatar" title="{{.LastReplyer.Name}}'s Avatar" />{{end}}
|
2017-10-30 09:57:08 +00:00
|
|
|
<span>
|
|
|
|
<a href="{{.LastTopic.Link}}">{{if .LastTopic.Title}}{{.LastTopic.Title}}{{else}}None{{end}}</a>
|
|
|
|
{{if .LastTopicTime}}<br /><span class="rowsmall">{{.LastTopicTime}}</span>{{end}}
|
|
|
|
</span>
|
2017-06-05 11:57:27 +00:00
|
|
|
</span>
|
|
|
|
<div style="clear: both;"></div>
|
2016-12-21 02:30:32 +00:00
|
|
|
</div>
|
2018-02-19 04:26:01 +00:00
|
|
|
{{else}}<div class="rowitem passive rowmsg">You don't have access to any forums.</div>{{end}}
|
2016-12-03 13:45:08 +00:00
|
|
|
</div>
|
2017-08-20 09:39:02 +00:00
|
|
|
|
|
|
|
</main>
|
2017-06-05 11:57:27 +00:00
|
|
|
{{template "footer.html" . }}
|