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.

1234567891011121314151617181920212223242526272829
  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. <span class="octicon octicon-link"></span> <a href="{{.Website}}" target="_blank" rel="noopener noreferrer">{{.Website}}</a>
  17. {{else if .Location}}
  18. <span class="octicon octicon-location"></span> {{.Location}}
  19. {{else}}
  20. <span class="octicon octicon-clock"></span> {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}}
  21. {{end}}
  22. </div>
  23. </li>
  24. {{end}}
  25. </ul>
  26. {{ template "base/paginate" . }}
  27. </div>