This repository has been archived on 2024-11-01. You can view files and clone it, but cannot push or open issues or pull requests.
blog/themes/kiera/layouts/partials/single_footer.html
2024-10-28 16:26:25 -05:00

25 lines
687 B
HTML

{{ if not .Params.meta }}
<section class="post-nav">
<ul>
<li>
{{ with .PrevInSection }}
<a href="{{.Permalink}}"><i class="fa fa-chevron-circle-left"></i> {{ .Title }}</a>
{{ end }}
</li>
<li>
{{ with .NextInSection }}
<a href="{{.Permalink}}">{{ .Title }} <i class="fa fa-chevron-circle-right"></i> </a>
{{ end }}
</li>
</ul>
</section>
{{ if not .Params.disableComments }}
{{ if .Site.Params.UtterancesRepo }}
{{ partial "utterances" . }}
{{ end }}
{{ if .Site.Config.Services.Disqus.Shortname }}
{{ partial "disqus" . }}
{{ end }}
{{ end }}
{{ end }}