This commit is contained in:
Luke Smith
2022-04-14 16:07:48 -04:00
commit 4ae859b630
16 changed files with 214 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{{ if isset .Site.Taxonomies "tags" }}
{{ if not (eq (len .Site.Taxonomies.tags) 0) }}
<div class="tagcloud">
{{ range $name, $items := .Site.Taxonomies.tags }}
{{ $url := printf "%s/%s" "tags" ($name | urlize | lower)}}
<a href="{{ $url | absURL }}">{{ $name }}</a>
{{ end }}
</div>
{{ end }}
{{ end }}