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.

organizations.tmpl 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738
  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">
  12. <a href="{{.HomeLink}}">{{.Name}}</a> {{.FullName}}
  13. {{if .Visibility.IsPrivate}}
  14. <span class="text gold">{{svg "octicon-lock" 16}}</span>
  15. {{end}}
  16. </span>
  17. <div class="description">
  18. {{if .Location}}
  19. {{svg "octicon-location" 16}} {{.Location}}
  20. {{end}}
  21. {{if and .Website}}
  22. {{svg "octicon-link" 16}}
  23. <a href="{{.Website}}" rel="nofollow">{{.Website}}</a>
  24. {{end}}
  25. {{svg "octicon-clock" 16}} {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}}
  26. </div>
  27. </div>
  28. </div>
  29. {{else}}
  30. <div>{{$.i18n.Tr "explore.org_no_results"}}</div>
  31. {{end}}
  32. </div>
  33. {{template "base/paginate" .}}
  34. </div>
  35. </div>
  36. {{template "base/footer" .}}