2015-12-21 17:54:11 +05:30
|
|
|
<div class="ui container user-cards">
|
2020-02-10 01:48:01 +05:30
|
|
|
{{if .CardsTitle}}
|
2015-12-21 17:54:11 +05:30
|
|
|
<h2 class="ui dividing header">
|
|
|
|
{{.CardsTitle}}
|
|
|
|
</h2>
|
2020-02-10 01:48:01 +05:30
|
|
|
{{end}}
|
2015-12-21 17:54:11 +05:30
|
|
|
<ul class="list">
|
|
|
|
{{range .Cards}}
|
|
|
|
<li class="item ui segment">
|
|
|
|
<a href="{{.HomeLink}}">
|
2020-12-04 00:16:11 +05:30
|
|
|
{{avatar .}}
|
2015-12-21 17:54:11 +05:30
|
|
|
</a>
|
|
|
|
<h3 class="name"><a href="{{.HomeLink}}">{{.DisplayName}}</a></h3>
|
|
|
|
|
|
|
|
<div class="meta">
|
|
|
|
{{if .Website}}
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-link"}} <a href="{{.Website}}" target="_blank" rel="noopener noreferrer">{{.Website}}</a>
|
2015-12-21 17:54:11 +05:30
|
|
|
{{else if .Location}}
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-location"}} {{.Location}}
|
2015-12-21 17:54:11 +05:30
|
|
|
{{else}}
|
2022-10-17 09:38:21 +05:30
|
|
|
{{svg "octicon-clock"}} {{$.locale.Tr "user.join_on"}} <time data-format="short-date" datetime="{{.CreatedUnix.FormatLong}}">{{.CreatedUnix.FormatShort}}</time>
|
2015-12-21 17:54:11 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
|
2022-08-26 03:25:52 +05:30
|
|
|
{{template "base/paginate" .}}
|
2016-07-23 22:38:22 +05:30
|
|
|
</div>
|