Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

organizations.tmpl 980B

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 .Website}}
  17. <i class="octicon octicon-link"></i>
  18. <a href="{{.Website}}" rel="nofollow">{{.Website}}</a>
  19. {{end}}
  20. <i class="octicon octicon-clock"></i> {{$.i18n.Tr "user.join_on"}} {{DateFmtShort .Created}}
  21. </div>
  22. </div>
  23. </div>
  24. {{else}}
  25. <div>{{$.i18n.Tr "explore.org_no_results"}}</div>
  26. {{end}}
  27. </div>
  28. {{template "base/paginate" .}}
  29. </div>
  30. </div>
  31. {{template "base/footer" .}}