mirror of
https://gitlab.com/EternalWanderer/vugo.git
synced 2025-06-08 06:14:26 +02:00
10 lines
280 B
HTML
10 lines
280 B
HTML
{{ if or .Next .Prev -}}
|
|
<div id="nextprev">
|
|
{{- 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 -}}
|
|
</div>
|
|
{{ end -}}
|