vodoraslo.xyz/themes/lugo/layouts/shortcodes/tacloud.html
2023-05-15 19:21:53 +03:00

13 lines
No EOL
412 B
HTML

{{ $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>