Files

12 lines
425 B
HTML

{{ define "pull-count" }}
{{/*
Pull count component - displays download icon with count
Required: .PullCount (int)
*/}}
<span class="flex items-center gap-2 text-base-content/60" title="{{ .PullCount }} pulls">
{{ icon "arrow-down-to-line" "size-[1.1rem] text-primary" }}
<span class="font-semibold text-base-content">{{ humanizeCount .PullCount }}</span>
<span class="sr-only">pulls</span>
</span>
{{ end }}