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

tags.html « body « partials « layouts - github.com/zzossig/hugo-theme-zzo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f94bf67fe298a22741ed759e30314ff95bc0c3e (plain)
1
2
3
4
5
6
7
8
9
{{ $taxo := "tags" }}
<ul class="single__tags caption">
  {{ if .Params.tags }}
  {{ ($.Site.Params.tagIcon | safeHTML) | default "🏷️" }}
  {{ end }}
{{ range (.GetTerms "tags") }}
  <li><a href="{{ .Permalink }}" class="single__tag" title="{{ .LinkTitle }}">#{{ .LinkTitle }}</a></li>
{{ end }}
</ul>