13 lines
395 B
HTML
13 lines
395 B
HTML
{{ if or (.PrevInSection) (.NextInSection) }}
|
|
<section>
|
|
<h2>Read Next</h2>
|
|
<div class="single-next-previous">
|
|
{{ with .PrevInSection }}
|
|
<a class="previous" href="{{.Permalink}}">« {{ .Title }}</a>
|
|
{{ end }}
|
|
{{ with .NextInSection }}
|
|
<a class="next" href="{{.Permalink}}">{{ .Title }} »</a>
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
{{ end }} |