1
0
Fork 0
minindie/layouts/partials/article-prevnext.html

18 lines
490 B
HTML
Raw Normal View History

2024-10-01 05:16:47 +00:00
<div class="article-nextprev noprint">
<div class="next-post">
{{ if .NextInSection }}
<a class="link-reverse" href="{{ .NextInSection.Permalink }}?ref=footer"
>« {{ .NextInSection.Title | truncate 30 "..." }}</a
>
{{ end }}
</div>
<div class="previous-post">
{{ if .PrevInSection }}
<a class="link-reverse" href="{{ .PrevInSection.Permalink }}?ref=footer"
>{{ .PrevInSection.Title | truncate 30 "..."}} »</a
>
{{ end }}
</div>
</div>