vodoraslo.xyz/themes/lugo/layouts/shortcodes/tacloud.html

13 lines
412 B
HTML
Raw Normal View History

2023-05-15 18:21:53 +02:00
{{ $tags := $.Site.Taxonomies.tags.Alphabetical }}
{{ $v1 := where $tags "Count" ">=" 1 }}
{{ $v2 := where $v1 "Term" "not in" (slice "hugo" "tags" "rss") }}
<ul id="tagcloud">
{{ range $v2 }}
{{ if .Term }}
{{ $tagURL := printf "tags/%s" .Term | relURL }}
<li>
<a href="{{ $tagURL }}" id="tag_{{ .Term }}" style="text-transform: none;">{{ .Term }} <span>({{ .Count }})</span></a>
{{ end }}
{{ end }}
</li>
</ul>