2016-03-12 02:03:12 +05:30
|
|
|
{{template "base/head" .}}
|
2020-12-01 09:30:14 +05:30
|
|
|
<div class="page-content explore users">
|
2017-03-16 00:25:12 +05:30
|
|
|
{{template "explore/navbar" .}}
|
2016-03-12 02:03:12 +05:30
|
|
|
<div class="ui container">
|
2017-03-16 00:25:12 +05:30
|
|
|
{{template "explore/search" .}}
|
2016-03-12 02:03:12 +05:30
|
|
|
|
2017-03-16 00:25:12 +05:30
|
|
|
<div class="ui user list">
|
|
|
|
{{range .Users}}
|
|
|
|
<div class="item">
|
2020-12-04 00:16:11 +05:30
|
|
|
{{avatar .}}
|
2021-04-11 09:16:37 +05:30
|
|
|
<div class="content">
|
|
|
|
<span class="header"><a href="{{.HomeLink}}">{{.Name}}</a> {{.FullName}}</span>
|
|
|
|
<div class="description">
|
|
|
|
{{if .Location}}
|
|
|
|
{{svg "octicon-location"}} {{.Location}}
|
|
|
|
{{end}}
|
|
|
|
{{if and $.ShowUserEmail .Email $.IsSigned (not .KeepEmailPrivate)}}
|
|
|
|
{{svg "octicon-mail"}}
|
|
|
|
<a href="mailto:{{.Email}}" rel="nofollow">{{.Email}}</a>
|
|
|
|
{{end}}
|
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>
|
2021-04-11 09:16:37 +05:30
|
|
|
</div>
|
2017-03-16 00:25:12 +05:30
|
|
|
</div>
|
2016-03-12 02:03:12 +05:30
|
|
|
</div>
|
2017-03-16 00:25:12 +05:30
|
|
|
{{else}}
|
2022-06-28 02:28:46 +05:30
|
|
|
<div>{{$.locale.Tr "explore.user_no_results"}}</div>
|
2017-03-16 00:25:12 +05:30
|
|
|
{{end}}
|
2016-03-12 02:03:12 +05:30
|
|
|
</div>
|
2017-03-16 00:25:12 +05:30
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2016-03-12 02:03:12 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|