Website/themes/liftoff/layouts/partials/posts/next-previous.html
Martin Gasque 0ba3f3c7c5 Initial commit
Will it deploy one day ?
2024-02-20 08:59:37 +01:00

13 lines
395 B
HTML

{{ if or (.PrevInSection) (.NextInSection) }}
<section>
<h2>Read Next</h2>
<div class="single-next-previous">
{{ with .PrevInSection }}
<a class="previous" href="{{.Permalink}}">&laquo; {{ .Title }}</a>
{{ end }}
{{ with .NextInSection }}
<a class="next" href="{{.Permalink}}">{{ .Title }} &raquo;</a>
{{ end }}
</div>
</section>
{{ end }}