mirror of
https://gitlab.com/EternalWanderer/vugo.git
synced 2024-11-28 21:13:51 +01:00
11 lines
280 B
HTML
11 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 -}}
|