7 lines
250 B
HTML

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