2016-03-12 02:03:12 +05:30
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="explore users">
|
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui grid">
|
|
|
|
{{template "explore/navbar" .}}
|
|
|
|
<div class="twelve wide column content">
|
|
|
|
{{template "explore/search" .}}
|
|
|
|
|
|
|
|
<div class="ui user list">
|
|
|
|
{{range .Users}}
|
|
|
|
<div class="item">
|
2016-08-06 00:42:54 +05:30
|
|
|
<img class="ui avatar image" src="{{.RelAvatarLink}}">
|
2016-03-12 02:03:12 +05:30
|
|
|
<div class="content">
|
|
|
|
<span class="header"><a href="{{.HomeLink}}">{{.Name}}</a> {{.FullName}}</span>
|
|
|
|
<div class="description">
|
|
|
|
{{if .Location}}
|
|
|
|
<i class="octicon octicon-location"></i> {{.Location}}
|
|
|
|
{{end}}
|
2017-01-08 08:42:03 +05:30
|
|
|
{{if and $.ShowUserEmail .Email $.IsSigned (not .KeepEmailPrivate)}}
|
2016-03-12 02:03:12 +05:30
|
|
|
<i class="octicon octicon-mail"></i>
|
|
|
|
<a href="mailto:{{.Email}}" rel="nofollow">{{.Email}}</a>
|
|
|
|
{{end}}
|
|
|
|
<i class="octicon octicon-clock"></i> {{$.i18n.Tr "user.join_on"}} {{DateFmtShort .Created}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-12-01 16:22:57 +05:30
|
|
|
{{else}}
|
|
|
|
<div>{{$.i18n.Tr "explore.user_no_results"}}</div>
|
2016-03-12 02:03:12 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
|
2016-11-07 16:14:49 +05:30
|
|
|
{{template "base/paginate" .}}
|
2016-03-12 02:03:12 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|