2016-09-01 15:08:05 +02:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="explore users">
|
2017-03-15 19:55:12 +01:00
|
|
|
{{template "explore/navbar" .}}
|
2016-09-01 15:08:05 +02:00
|
|
|
<div class="ui container">
|
2017-03-15 19:55:12 +01:00
|
|
|
{{template "explore/search" .}}
|
2016-09-01 15:08:05 +02:00
|
|
|
|
2017-03-15 19:55:12 +01: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">
|
|
|
|
{{if .Location}}
|
|
|
|
<i class="octicon octicon-location"></i> {{.Location}}
|
|
|
|
{{end}}
|
|
|
|
{{if and .Website}}
|
|
|
|
<i class="octicon octicon-link"></i>
|
|
|
|
<a href="{{.Website}}" rel="nofollow">{{.Website}}</a>
|
|
|
|
{{end}}
|
2017-12-11 05:37:04 +01:00
|
|
|
<i class="octicon octicon-clock"></i> {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}}
|
2017-03-15 19:55:12 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-09-01 15:08:05 +02:00
|
|
|
</div>
|
2017-03-15 19:55:12 +01:00
|
|
|
{{else}}
|
|
|
|
<div>{{$.i18n.Tr "explore.org_no_results"}}</div>
|
|
|
|
{{end}}
|
2016-09-01 15:08:05 +02:00
|
|
|
</div>
|
2017-03-15 19:55:12 +01:00
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2016-09-01 15:08:05 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|