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

list-taxonomy-terms.html « partials « layouts - github.com/mdashx/basicwebtheme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5eb67f5748e5c5ba58d52de60542705d1ad6664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<em>{{ $.label }} 

{{ range $term := .terms }}

  {{ $term_path := ($term | lower | urlize) }}
  {{ $term_page := site.GetPage (path.Join $.parent $term_path) }}
  {{ $url := $term_page.Permalink}}

  <a href={{ $url }}>{{ $term }}</a>

{{ end }}

</em>