|
|
@ -41,11 +41,11 @@
|
|
|
|
{{ $terms := slice }}
|
|
|
|
{{ $terms := slice }}
|
|
|
|
|
|
|
|
|
|
|
|
{{ range $categories }}
|
|
|
|
{{ range $categories }}
|
|
|
|
{{ $terms = $terms | append (dict "name" . "url" (lower . | printf "categories/%v/" | relLangURL | string)) }}
|
|
|
|
{{ $terms = $terms | append (dict "name" . "url" (printf "categories/%v/" . | relLangURL | string)) }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
|
|
{{ range $tags }}
|
|
|
|
{{ range $tags }}
|
|
|
|
{{ $terms = $terms | append (dict "name" . "url" (lower . | printf "tags/%v/" | relLangURL | string)) }}
|
|
|
|
{{ $terms = $terms | append (dict "name" . "url" (printf "tags/%v/" . | relLangURL | string)) }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
|
|
{{ range sort $terms "name" }}
|
|
|
|
{{ range sort $terms "name" }}
|
|
|
|