17 lines
490 B
HTML
17 lines
490 B
HTML
<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>
|