2016-12-03 13:45:08 +00:00
|
|
|
{{template "header.html" . }}
|
2017-01-26 13:37:50 +00:00
|
|
|
{{if gt .Page 1}}<div id="prevFloat" class="prev_button"><a class="prev_link" href="/forum/{{.Forum.ID}}?page={{subtract .Page 1}}"><</a></div>{{end}}
|
|
|
|
{{if ne .LastPage .Page}}<link rel="prerender" href="/forum/{{.Forum.ID}}?page={{add .Page 1}}" />
|
|
|
|
<div id="nextFloat" class="next_button"><a class="next_link" href="/forum/{{.Forum.ID}}?page={{add .Page 1}}">></a></div>{{end}}
|
2016-12-03 13:45:08 +00:00
|
|
|
<div class="rowblock">
|
2017-01-07 06:31:04 +00:00
|
|
|
<div class="rowitem rowhead"><a>{{.Title}}</a></div>
|
2016-12-03 13:45:08 +00:00
|
|
|
</div>
|
|
|
|
<div class="rowblock">
|
2017-01-26 13:37:50 +00:00
|
|
|
{{range .ItemList}}<div class="rowitem passive" style="{{if .Avatar}}background-image: url({{.Avatar}});background-position: left;background-repeat: no-repeat;background-size: 64px;padding-left: 72px;{{end}}{{if .Sticky}}background-color: #FFFFCC;{{else if .Is_Closed}}background-color: #eaeaea;{{end}}">
|
|
|
|
<a href="/topic/{{.ID}}">{{.Title}}</a> {{if .Is_Closed}}<span class="username topic_status_e topic_status_closed" title="Status: Closed" style="float: right;position:relative;top:-5px;">🔒︎</span>{{end}}
|
2016-12-21 02:30:32 +00:00
|
|
|
</div>
|
|
|
|
{{else}}<div class="rowitem passive">There aren't any topics in this forum yet.</div>{{end}}
|
2016-12-03 13:45:08 +00:00
|
|
|
</div>
|
|
|
|
{{template "footer.html" . }}
|