You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
995 B
33 lines
995 B
{{template "base/head" .}}
|
|
<div class="explore users">
|
|
{{template "explore/navbar" .}}
|
|
<div class="ui container">
|
|
{{template "explore/search" .}}
|
|
|
|
<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}}
|
|
{{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}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
<div>{{$.i18n.Tr "explore.user_no_results"}}</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|
|
|