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

tags.html « partials « layouts - github.com/heyeshuang/hugo-theme-tokiwa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2111cc60b344dfc268cf93d537f7f91b5ae99352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="md:flex-grow-0 font-light">
	{{ if isset .Params "categories" }}
	{{ $count := len .Params.categories}}
	{{ if gt $count 0 }}
	{{ range $k, $v := .Params.categories}}
	<a class="post-taxonomy-category text-medium-red-violet-600 hover:text-medium-red-violet-400"
		href="/categories/{{ . | urlize }}">{{ . }}</a>{{ if lt $k (sub $count 1) }}&nbsp;&#47;{{ end }}
	{{end}}&nbsp;
	{{end}}
	{{end}}
	{{ if isset .Params "tags" }}
	{{ $count := len .Params.tags }}
	{{ if gt $count 0 }}
	{{ range $k, $v := .Params.tags }}
	<a class="post-taxonomy-tag text-eucalyptus-500" href="/tags/{{ . | urlize }}">{{ . }}</a>{{ if lt $k (sub $count 1) }}&nbsp;&#47;{{ end }}
	{{ end }}
	{{ end }}
	{{ end }}
</div>