12 lines
392 B
HTML
12 lines
392 B
HTML
<div class="PageNavigation">
|
|
{{ if .PrevInSection }}
|
|
<div class="pagerButton left">
|
|
<h4><a class=" button" href="{{ .PrevInSection.RelPermalink }}"> « Prev </a></h4>
|
|
</div>
|
|
{{ end }}
|
|
{{ if .NextInSection }}
|
|
<div class="pagerButton right">
|
|
<h4><a class=" button" href="{{ .NextInSection.RelPermalink }}"> Next >></a></h4>
|
|
</div>
|
|
{{ end }}
|
|
</div> |