summaryrefslogtreecommitdiffstats
path: root/templates/repo/user_cards.tmpl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-10-11 10:27:00 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-10-11 10:27:00 +0000
commit65aa53fc52ff15efe54df4147564828d535837f8 (patch)
tree31c51dad04fdcca80e6d3043c8bd49d2f1a51f83 /templates/repo/user_cards.tmpl
parentInitial commit. (diff)
downloadforgejo-65aa53fc52ff15efe54df4147564828d535837f8.tar.xz
forgejo-65aa53fc52ff15efe54df4147564828d535837f8.zip
Adding upstream version 8.0.3.HEADupstream/8.0.3upstreamdebian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'templates/repo/user_cards.tmpl')
-rw-r--r--templates/repo/user_cards.tmpl29
1 files changed, 29 insertions, 0 deletions
diff --git a/templates/repo/user_cards.tmpl b/templates/repo/user_cards.tmpl
new file mode 100644
index 00000000..9061b177
--- /dev/null
+++ b/templates/repo/user_cards.tmpl
@@ -0,0 +1,29 @@
+<div class="user-cards">
+ {{if .CardsTitle}}
+ <h2 class="tw-mb-0">
+ {{.CardsTitle}}
+ </h2>
+ {{end}}
+ <ul class="list">
+ {{range .Cards}}
+ <li class="item ui segment">
+ <a href="{{.HomeLink}}">
+ {{ctx.AvatarUtils.Avatar .}}
+ </a>
+ <h3 class="name"><a href="{{.HomeLink}}">{{.DisplayName}}</a></h3>
+
+ <div class="meta">
+ {{if .Website}}
+ {{svg "octicon-link"}} <a href="{{.Website}}" target="_blank" rel="noopener noreferrer">{{.Website}}</a>
+ {{else if .Location}}
+ {{svg "octicon-location"}} {{.Location}}
+ {{else}}
+ {{svg "octicon-calendar"}} {{ctx.Locale.Tr "user.joined_on" (DateTime "short" .CreatedUnix)}}
+ {{end}}
+ </div>
+ </li>
+ {{end}}
+ </ul>
+
+ {{template "base/paginate" .}}
+</div>