lugo/layouts/partials/nextprev.html

11 lines
301 B
HTML
Raw Normal View History

2022-07-11 19:31:01 +00:00
{{ if or .Next .Prev -}}
<br style="clear:both">
{{- with .Prev }}
<a href="{{ .RelPermalink}}"><div id="prevart">Previous:<br>{{.Title}}</div></a>
{{ end -}}
{{- with .Next -}}
<a href="{{ .RelPermalink}}"><div id="nextart">Next:<br>{{.Title}}</div></a>
{{ end -}}
<br style="clear:both">
{{ end -}}