Files
Atay-Makhzan/templates/repo/user_cards.tmpl
T

30 lines
789 B
Cheetah
Raw Normal View History

2015-12-21 04:24:11 -08:00
<div class="ui container user-cards">
{{if .CardsTitle}}
2015-12-21 04:24:11 -08:00
<h2 class="ui dividing header">
{{.CardsTitle}}
</h2>
{{end}}
2015-12-21 04:24:11 -08:00
<ul class="list">
{{range .Cards}}
<li class="item ui segment">
<a href="{{.HomeLink}}">
<img class="avatar" src="{{.RelAvatarLink}}"/>
2015-12-21 04:24:11 -08:00
</a>
<h3 class="name"><a href="{{.HomeLink}}">{{.DisplayName}}</a></h3>
<div class="meta">
{{if .Website}}
2020-02-11 11:02:41 -06:00
{{svg "octicon-link" 16}} <a href="{{.Website}}" target="_blank" rel="noopener noreferrer">{{.Website}}</a>
2015-12-21 04:24:11 -08:00
{{else if .Location}}
2020-02-11 11:02:41 -06:00
{{svg "octicon-location" 16}} {{.Location}}
2015-12-21 04:24:11 -08:00
{{else}}
2020-02-11 11:02:41 -06:00
{{svg "octicon-clock" 16}} {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}}
2015-12-21 04:24:11 -08:00
{{end}}
</div>
</li>
{{end}}
</ul>
{{ template "base/paginate" . }}
2016-07-24 01:08:22 +08:00
</div>