Welcome to mirror list, hosted at ThFree Co, Russian Federation.

categories.html « partials « layouts - github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16bbcccc8adadb8e33a90f6332743172f43fa9ad (plain)
1
2
3
4
5
6
7
8
{{ $taxonomy := "categories" }} {{ with .Param $taxonomy }}
  {{ $len := (len .) }}
  {{ range $index, $tag := . }}
  {{ $urlTag := $tag | urlize }}
  {{ with $.Site.GetPage (printf "/%s/%s" $taxonomy $urlTag) -}}
  <a href="{{ .Permalink }}">{{ $tag }}</a>{{ cond (eq (add $index 1) $len) "" ", " }}
  {{- end -}}{{- end -}}
{{ end }}