kamathskitchen-website/themes/raavas/layouts/partials/next-prev-in-section.html

11 lines
386 B
HTML

{{ if or .PrevInSection .NextInSection }}
<div class="post-nav">
{{if .PrevInSection}}
<a class="nav-link" href="{{ .PrevInSection.Permalink }}" class="" title="{{ .PrevInSection.Title }}">&larr; Prev.</a>
{{end}}
{{if .NextInSection}}
<a class="nav-link" href="{{ .NextInSection.Permalink }}" class="" title="{{ .NextInSection.Title }} ">Next &rarr;</a>
{{end}}
</div>
{{ end }}