2016-09-01 09:08:05 -04:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="explore users">
|
2017-03-15 14:55:12 -04:00
|
|
|
{{template "explore/navbar" .}}
|
2016-09-01 09:08:05 -04:00
|
|
|
<div class="ui container">
|
2017-03-15 14:55:12 -04:00
|
|
|
{{template "explore/search" .}}
|
2016-09-01 09:08:05 -04:00
|
|
|
|
2017-03-15 14:55:12 -04:00
|
|
|
<div class="ui user list">
|
|
|
|
{{range .Users}}
|
|
|
|
<div class="item">
|
|
|
|
<img class="ui avatar image" src="{{.RelAvatarLink}}">
|
|
|
|
<div class="content">
|
2019-02-18 11:00:27 -05:00
|
|
|
<span class="header">
|
|
|
|
<a href="{{.HomeLink}}">{{.Name}}</a> {{.FullName}}
|
|
|
|
{{if .Visibility.IsPrivate}}
|
2020-02-11 12:02:41 -05:00
|
|
|
<span class="text gold">{{svg "octicon-lock" 16}}</span>
|
2019-02-18 11:00:27 -05:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2017-03-15 14:55:12 -04:00
|
|
|
<div class="description">
|
2020-02-11 12:02:41 -05:00
|
|
|
{{if .Location}}
|
|
|
|
{{svg "octicon-location" 16}} {{.Location}}
|
|
|
|
{{end}}
|
|
|
|
{{if and .Website}}
|
|
|
|
{{svg "octicon-link" 16}}
|
|
|
|
<a href="{{.Website}}" rel="nofollow">{{.Website}}</a>
|
|
|
|
{{end}}
|
|
|
|
{{svg "octicon-clock" 16}} {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}}
|
2017-03-15 14:55:12 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-09-01 09:08:05 -04:00
|
|
|
</div>
|
2017-03-15 14:55:12 -04:00
|
|
|
{{else}}
|
|
|
|
<div>{{$.i18n.Tr "explore.org_no_results"}}</div>
|
|
|
|
{{end}}
|
2016-09-01 09:08:05 -04:00
|
|
|
</div>
|
2017-03-15 14:55:12 -04:00
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2016-09-01 09:08:05 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|