2016-09-01 13:08:05 +00:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 04:00:14 +00:00
|
|
|
<div class="page-content explore users">
|
2017-03-15 18:55:12 +00:00
|
|
|
{{template "explore/navbar" .}}
|
2016-09-01 13:08:05 +00:00
|
|
|
<div class="ui container">
|
2017-03-15 18:55:12 +00:00
|
|
|
{{template "explore/search" .}}
|
2016-09-01 13:08:05 +00:00
|
|
|
|
2017-03-15 18:55:12 +00:00
|
|
|
<div class="ui user list">
|
|
|
|
{{range .Users}}
|
|
|
|
<div class="item">
|
2020-12-03 18:46:11 +00:00
|
|
|
{{avatar .}}
|
2021-04-11 03:46:37 +00:00
|
|
|
<div class="content">
|
|
|
|
<span class="header">
|
|
|
|
<a href="{{.HomeLink}}">{{.Name}}</a> {{.FullName}}
|
|
|
|
{{if .Visibility.IsPrivate}}
|
|
|
|
<span class="ui basic label">{{$.i18n.Tr "repo.desc.private"}}</span>
|
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
<div class="description">
|
|
|
|
{{if .Location}}
|
|
|
|
{{svg "octicon-location"}} {{.Location}}
|
|
|
|
{{end}}
|
|
|
|
{{if and .Website}}
|
|
|
|
{{svg "octicon-link"}}
|
|
|
|
<a href="{{.Website}}" rel="nofollow">{{.Website}}</a>
|
|
|
|
{{end}}
|
|
|
|
{{svg "octicon-clock"}} {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}}
|
|
|
|
</div>
|
2017-03-15 18:55:12 +00:00
|
|
|
</div>
|
2016-09-01 13:08:05 +00:00
|
|
|
</div>
|
2017-03-15 18:55:12 +00:00
|
|
|
{{else}}
|
|
|
|
<div>{{$.i18n.Tr "explore.org_no_results"}}</div>
|
|
|
|
{{end}}
|
2016-09-01 13:08:05 +00:00
|
|
|
</div>
|
2017-03-15 18:55:12 +00:00
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2016-09-01 13:08:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|