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: 2a49f043aa1311a39d722b5a2754a849464fab4f (plain)
1
2
3
4
5
6
7
8
{{- with .Params.categories -}}
<span class="article-category">
  <i class="icon icon-folder"></i>
  {{- range . }}
  <a class="article-category-link" href="{{ "categories" | relLangURL }}/{{ . | urlize }}/"> {{ . }} </a>
  {{- end}}
</span>
{{- end }}