gosora/templates/socialgroups_group_list.html
Azareal 409719d10e Added support for screen readers.
Refactored the setting system to make it thread-safe.
Planned out the task system.
Fixed the closed topic status header.
2017-08-20 10:39:02 +01:00

22 lines
698 B
HTML

{{template "header.html" . }}
<main>
<div class="rowblock opthead">
<div class="rowitem"><a>Group List</a></div>
</div>
<div class="rowblock">
{{range .GroupList}}<div class="rowitem datarow">
<span style="float: left;">
<a href="{{.Link}}" style="">{{.Name}}</a>
<br /><span class="rowsmall">{{.Desc}}</span>
</span>
<span style="float: right;">
<span style="float: right;font-size: 14px;">{{.MemberCount}} members</span>
<br /><span class="rowsmall">{{.LastUpdateTime}}</span>
</span>
<div style="clear: both;"></div>
</div>
{{else}}<div class="rowitem passive">There aren't any visible groups.</div>{{end}}
</div>
</main>
{{template "footer.html" . }}