tags.html 288 B

12345678910
  1. <!-- layouts/partials/tags.html -->
  2. {{ $taxonomy := "tags" }}
  3. {{ with .Param $taxonomy }}
  4. {{ range $index, $tag := . }}
  5. {{ with $.Site.GetPage (printf "/%s/%s" $taxonomy $tag) -}}
  6. / <a href="{{ .Permalink }}"> {{ $tag | urlize }}</a>
  7. {{- end -}}
  8. {{- end -}}
  9. {{ end }}