Fix order of next, prev page links
This commit is contained in:
@@ -24,15 +24,15 @@
|
||||
|
||||
{{ if or $page.PrevInSection $page.NextInSection }}
|
||||
<div class="mb-3" id="paige-prev-next">
|
||||
{{ if $page.PrevInSection }}
|
||||
{{ with $page.NextInSection }}
|
||||
<p class="mb-0 text-center text-secondary" id="paige-prev">
|
||||
← <a class="link-secondary" href="{{ $page.PrevInSection.Permalink }}">{{ $page.PrevInSection.Title }}</a>
|
||||
← <a class="link-secondary" href="{{ .Permalink }}">{{ .Title }}</a>
|
||||
</p>
|
||||
{{ end }}
|
||||
|
||||
{{ if $page.NextInSection }}
|
||||
{{ with $page.PrevInSection }}
|
||||
<p class="mb-0 text-center text-secondary" id="paige-next">
|
||||
<a class="link-secondary" href="{{ $page.NextInSection.Permalink }}">{{ $page.NextInSection.Title }}</a> →
|
||||
<a class="link-secondary" href="{{ .Permalink }}">{{ .Title }}</a> →
|
||||
</p>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user