15 lines
475 B
HTML
15 lines
475 B
HTML
<footer class="post-footer">
|
|
{{- $tags := .Language.Params.Taxonomies.tag | default "tags" }}
|
|
<ul class="post-tags">
|
|
{{- range ($.GetTerms $tags) }}
|
|
<li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>
|
|
{{- end }}
|
|
</ul>
|
|
{{- if (.Param "ShowPostNavLinks") }}
|
|
{{- partial "post_nav_links.html" . }}
|
|
{{- end }}
|
|
{{- if (and site.Params.ShowShareButtons (ne .Params.disableShare true)) }}
|
|
{{- partial "share_icons.html" . -}}
|
|
{{- end }}
|
|
</footer>
|