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.

users.tmpl 1.0KB

123456789101112131415161718192021222324252627282930313233
  1. {{template "base/head" .}}
  2. <div class="explore users">
  3. {{template "explore/navbar" .}}
  4. <div class="ui container">
  5. {{template "explore/search" .}}
  6. <div class="ui user list">
  7. {{range .Users}}
  8. <div class="item">
  9. <img class="ui avatar image" src="{{.RelAvatarLink}}">
  10. <div class="content">
  11. <span class="header"><a href="{{.HomeLink}}">{{.Name}}</a> {{.FullName}}</span>
  12. <div class="description">
  13. {{if .Location}}
  14. <i class="octicon octicon-location"></i> {{.Location}}
  15. {{end}}
  16. {{if and $.ShowUserEmail .Email $.IsSigned (not .KeepEmailPrivate)}}
  17. <i class="octicon octicon-mail"></i>
  18. <a href="mailto:{{.Email}}" rel="nofollow">{{.Email}}</a>
  19. {{end}}
  20. <i class="octicon octicon-clock"></i> {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}}
  21. </div>
  22. </div>
  23. </div>
  24. {{else}}
  25. <div>{{$.i18n.Tr "explore.user_no_results"}}</div>
  26. {{end}}
  27. </div>
  28. {{template "base/paginate" .}}
  29. </div>
  30. </div>
  31. {{template "base/footer" .}}