summaryrefslogtreecommitdiffstats
path: root/layouts/partials/post_meta.html
blob: 177175176307e6b220328a4517600b3b8cd6cdb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{{ if ne (.Params.showMeta | default true) false }}
<div class="post-meta">
	{{ if eq .Kind "page" }}
	<div class="post-meta-item post-tag">
		# {{ $tags := .GetTerms "tags" }} {{ $len := len $tags }} {{ range $index,
		$tag := $tags }}
		<a href="{{ .Permalink }}">{{ $tag.LinkTitle }}</a>
		{{ if lt (add $index 1) $len }}, {{ end }} {{ end }}
	</div>
	{{ end }}
</div>
{{ end }}