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

category.html « post « partials « layouts - github.com/xiaoheiAh/hugo-theme-pure.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd06f4939ceff2edee58d8b8e1dbb3461988d007 (plain)
1
2
3
4
5
6
7
8
{{- with .Params.categories -}}
<span class="article-category">
  <i class="icon icon-folder"></i>&nbsp;
  {{- range . }}
  <a class="article-category-link" href="{{ "categories" | relLangURL }}/{{ . | urlize }}/"> {{ . }} </a>
  {{- end}}
</span>
{{- end }}