2023-04-30 03:43:01 +08:00
|
|
|
<div class="user-cards">
|
2020-02-10 04:18:01 +08:00
|
|
|
{{if .CardsTitle}}
|
2015-12-21 20:24:11 +08:00
|
|
|
<h2 class="ui dividing header">
|
|
|
|
{{.CardsTitle}}
|
|
|
|
</h2>
|
2020-02-10 04:18:01 +08:00
|
|
|
{{end}}
|
2015-12-21 20:24:11 +08:00
|
|
|
<ul class="list">
|
|
|
|
{{range .Cards}}
|
|
|
|
<li class="item ui segment">
|
|
|
|
<a href="{{.HomeLink}}">
|
2024-06-29 05:29:15 +08:00
|
|
|
{{ctx.AvatarUtils.Avatar . 48}}
|
2015-12-21 20:24:11 +08:00
|
|
|
</a>
|
|
|
|
<h3 class="name"><a href="{{.HomeLink}}">{{.DisplayName}}</a></h3>
|
|
|
|
|
|
|
|
<div class="meta">
|
|
|
|
{{if .Website}}
|
2020-09-12 04:19:00 +08:00
|
|
|
{{svg "octicon-link"}} <a href="{{.Website}}" target="_blank" rel="noopener noreferrer">{{.Website}}</a>
|
2015-12-21 20:24:11 +08:00
|
|
|
{{else if .Location}}
|
2020-09-12 04:19:00 +08:00
|
|
|
{{svg "octicon-location"}} {{.Location}}
|
2015-12-21 20:24:11 +08:00
|
|
|
{{else}}
|
2024-02-23 01:02:33 +08:00
|
|
|
{{svg "octicon-calendar"}} {{ctx.Locale.Tr "user.joined_on" (DateTime "short" .CreatedUnix)}}
|
2015-12-21 20:24:11 +08:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
|
2022-08-26 05:55:52 +08:00
|
|
|
{{template "base/paginate" .}}
|
2016-07-24 01:08:22 +08:00
|
|
|
</div>
|