code.gitea.io/gitea@v1.22.3/templates/repo/user_cards.tmpl (about) 1 <div class="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 {{ctx.AvatarUtils.Avatar .}} 12 </a> 13 <h3 class="name"><a href="{{.HomeLink}}">{{.DisplayName}}</a></h3> 14 15 <div class="meta"> 16 {{if .Website}} 17 {{svg "octicon-link"}} <a href="{{.Website}}" target="_blank" rel="noopener noreferrer">{{.Website}}</a> 18 {{else if .Location}} 19 {{svg "octicon-location"}} {{.Location}} 20 {{else}} 21 {{svg "octicon-calendar"}} {{ctx.Locale.Tr "user.joined_on" (DateTime "short" .CreatedUnix)}} 22 {{end}} 23 </div> 24 </li> 25 {{end}} 26 </ul> 27 28 {{template "base/paginate" .}} 29 </div>