2023-08-12 03:44:17 -07:00

7 lines
262 B
HTML

{{ $taxonomy := "tags" }} {{ with .Param $taxonomy }}
{{ range $index, $tag := . }} {{ with $.Site.GetPage (printf "/%s/%s"
$taxonomy $tag) -}}
<a class="tag" href="{{ .Permalink }}">#{{ $tag | urlize }}</a>
{{- end -}} {{- end -}}
{{ end }}