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