2016-03-11 21:33:12 +01:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 05:00:14 +01:00
|
|
|
<div class="page-content explore users">
|
2017-03-15 19:55:12 +01:00
|
|
|
{{template "explore/navbar" .}}
|
2016-03-11 21:33:12 +01:00
|
|
|
<div class="ui container">
|
2017-03-15 19:55:12 +01:00
|
|
|
{{template "explore/search" .}}
|
2016-03-11 21:33:12 +01:00
|
|
|
|
2017-03-15 19:55:12 +01:00
|
|
|
<div class="ui user list">
|
|
|
|
{{range .Users}}
|
|
|
|
<div class="item">
|
2020-12-03 19:46:11 +01:00
|
|
|
{{avatar .}}
|
2021-04-11 05:46:37 +02:00
|
|
|
<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}}
|
|
|
|
{{svg "octicon-clock"}} {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}}
|
|
|
|
</div>
|
2017-03-15 19:55:12 +01:00
|
|
|
</div>
|
2016-03-11 21:33:12 +01:00
|
|
|
</div>
|
2017-03-15 19:55:12 +01:00
|
|
|
{{else}}
|
|
|
|
<div>{{$.i18n.Tr "explore.user_no_results"}}</div>
|
|
|
|
{{end}}
|
2016-03-11 21:33:12 +01:00
|
|
|
</div>
|
2017-03-15 19:55:12 +01:00
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2016-03-11 21:33:12 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|