fosscat-site/themes/gokarna/layouts/partials/prev-next.html

32 lines
881 B
HTML

<nav aria-label="Post navigation" class="post-navigation">
{{ with .PrevInSection }}
<div class="prev-post">
<p>
<a href="{{ .RelPermalink }}">
&#8592;
{{ i18n "previous" }}:
{{ .Title | markdownify }}
</a>
</p>
<p class="prev-post-date">
{{ dateFormat (or .Site.Params.dateFormat "January 2, 2006") .Date}}
</p>
</div>
{{ end }}
{{ with .NextInSection }}
<div class="next-post">
<p>
<a href="{{ .RelPermalink }}">
{{ i18n "next" }}:
{{ .Title | markdownify }}
&#8594;
</a>
</p>
<p class="next-post-date">
{{ dateFormat (or .Site.Params.dateFormat "January 2, 2006") .Date}}
</p>
</div>
{{ end }}
</nav>