hugo-PaperMod/layouts/partials/post_footer.html
Berk Elyesa Yıldırım e01d93f613 Separate post-footer for better customization
Leaves less room for git conflicts and unnecessary overwrites
2024-02-27 13:48:44 +03:00

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>