2015-12-21 05:24:11 -07:00
|
|
|
<div class="ui container user-cards">
|
|
|
|
<h2 class="ui dividing header">
|
|
|
|
{{.CardsTitle}}
|
|
|
|
</h2>
|
|
|
|
<ul class="list">
|
|
|
|
{{range .Cards}}
|
|
|
|
<li class="item ui segment">
|
|
|
|
<a href="{{.HomeLink}}">
|
2016-08-05 13:12:54 -06:00
|
|
|
<img class="avatar" src="{{.RelAvatarLink}}"/>
|
2015-12-21 05:24:11 -07:00
|
|
|
</a>
|
|
|
|
<h3 class="name"><a href="{{.HomeLink}}">{{.DisplayName}}</a></h3>
|
|
|
|
|
|
|
|
<div class="meta">
|
|
|
|
{{if .Website}}
|
2018-07-03 17:52:36 -06:00
|
|
|
<span class="octicon octicon-link"></span> <a href="{{.Website}}" target="_blank" rel="noopener noreferrer">{{.Website}}</a>
|
2015-12-21 05:24:11 -07:00
|
|
|
{{else if .Location}}
|
2016-07-15 22:45:13 -06:00
|
|
|
<span class="octicon octicon-location"></span> {{.Location}}
|
2015-12-21 05:24:11 -07:00
|
|
|
{{else}}
|
2017-12-10 21:37:04 -07:00
|
|
|
<span class="octicon octicon-clock"></span> {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}}
|
2015-12-21 05:24:11 -07:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
|
2019-04-19 22:15:19 -06:00
|
|
|
{{ template "base/paginate" . }}
|
2016-07-23 11:08:22 -06:00
|
|
|
</div>
|