2016-03-11 20:33:12 +00:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="explore users">
|
2017-03-15 18:55:12 +00:00
|
|
|
{{template "explore/navbar" .}}
|
2016-03-11 20:33:12 +00:00
|
|
|
<div class="ui container">
|
2017-03-15 18:55:12 +00:00
|
|
|
{{template "explore/search" .}}
|
2016-03-11 20:33:12 +00:00
|
|
|
|
2017-03-15 18:55:12 +00:00
|
|
|
<div class="ui user list">
|
|
|
|
{{range .Users}}
|
|
|
|
<div class="item">
|
|
|
|
<img class="ui avatar image" src="{{.RelAvatarLink}}">
|
|
|
|
<div class="content">
|
|
|
|
<span class="header"><a href="{{.HomeLink}}">{{.Name}}</a> {{.FullName}}</span>
|
|
|
|
<div class="description">
|
2020-02-11 17:02:41 +00:00
|
|
|
{{if .Location}}
|
|
|
|
{{svg "octicon-location" 16}} {{.Location}}
|
|
|
|
{{end}}
|
|
|
|
{{if and $.ShowUserEmail .Email $.IsSigned (not .KeepEmailPrivate)}}
|
|
|
|
{{svg "octicon-mail" 16}}
|
|
|
|
<a href="mailto:{{.Email}}" rel="nofollow">{{.Email}}</a>
|
|
|
|
{{end}}
|
|
|
|
{{svg "octicon-clock" 16}} {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}}
|
2017-03-15 18:55:12 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-03-11 20:33:12 +00:00
|
|
|
</div>
|
2017-03-15 18:55:12 +00:00
|
|
|
{{else}}
|
|
|
|
<div>{{$.i18n.Tr "explore.user_no_results"}}</div>
|
|
|
|
{{end}}
|
2016-03-11 20:33:12 +00:00
|
|
|
</div>
|
2017-03-15 18:55:12 +00:00
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2016-03-11 20:33:12 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|