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

tag-list.html « partials « layouts - gitlab.com/rmaguiar/hugo-theme-color-your-world.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f46fb09140c98905bc460b05d27a707883fef0a3 (plain)
1
2
3
4
5
6
7
8
9
10
{{ if and (gt (len .Site.Taxonomies.tags) 1) (ne .Section "categories") }}
  <hr>
  <h2>{{ T "tags" }}</h2>
  
  <ul class="terms">
    {{ range .Site.Taxonomies.tags }}
      <li><a class="btn" href="{{ .Page.RelPermalink }}" title="{{ .Page.LinkTitle }} ({{ .Count }})">{{ .Page.LinkTitle }}<span>{{ .Count }}</span></a></li>
    {{ end }}
  </ul>
{{ end }}