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.

29 lines
780 B

  1. <div class="ui container user-cards">
  2. {{if .CardsTitle}}
  3. <h2 class="ui dividing header">
  4. {{.CardsTitle}}
  5. </h2>
  6. {{end}}
  7. <ul class="list">
  8. {{range .Cards}}
  9. <li class="item ui segment">
  10. <a href="{{.HomeLink}}">
  11. <img class="avatar" src="{{.RelAvatarLink}}"/>
  12. </a>
  13. <h3 class="name"><a href="{{.HomeLink}}">{{.DisplayName}}</a></h3>
  14. <div class="meta">
  15. {{if .Website}}
  16. {{svg "octicon-link"}} <a href="{{.Website}}" target="_blank" rel="noopener noreferrer">{{.Website}}</a>
  17. {{else if .Location}}
  18. {{svg "octicon-location"}} {{.Location}}
  19. {{else}}
  20. {{svg "octicon-clock"}} {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}}
  21. {{end}}
  22. </div>
  23. </li>
  24. {{end}}
  25. </ul>
  26. {{ template "base/paginate" . }}
  27. </div>