mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-01 02:13:00 +01:00
9 lines
547 B
HTML
9 lines
547 B
HTML
{{ if .Params.categories }}
|
|
<i class="fa fa-folder" aria-hidden="true"></i> {{ range $index, $category := .Params.categories }}{{ if gt $index 0 }}, {{ end }}<a href="{{ "/categories/" | relLangURL }}{{ . | urlize }}" rel="category tag">{{ . }}</a>{{ end }}
|
|
{{ end }}
|
|
{{ if .Params.tags }}
|
|
<i class="fa fa-tag" aria-hidden="true"></i> {{ range $index, $tag := .Params.tags }}{{ if gt $index 0 }}, {{ end }}<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}" rel="tag">{{ . }}</a>{{ end }}
|
|
{{ end }}
|
|
|
|
{{- /* vim: set ts=2 sw=2 et: */}}
|