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

30 lines
748 B
Handlebars
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}}">
2020-12-03 19:46:11 +01:00
{{avatar .}}
2015-12-21 04:24:11 -08:00
</a>
<h3 class="name"><a href="{{.HomeLink}}">{{.DisplayName}}</a></h3>
<div class="meta">
{{if .Website}}
2020-09-11 22:19:00 +02:00
{{svg "octicon-link"}} <a href="{{.Website}}" target="_blank" rel="noopener noreferrer">{{.Website}}</a>
2015-12-21 04:24:11 -08:00
{{else if .Location}}
2020-09-11 22:19:00 +02:00
{{svg "octicon-location"}} {{.Location}}
2015-12-21 04:24:11 -08:00
{{else}}
2022-06-27 22:58:46 +02:00
{{svg "octicon-clock"}} {{$.locale.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>