Remove prev, next page arrows from links

This commit is contained in:
Will Faught
2024-06-09 19:08:44 -07:00
parent 06c8b1f44d
commit 8e388f6bee

View File

@@ -26,13 +26,13 @@
<div class="mb-3" id="paige-prev-next">
{{ if $page.PrevInSection }}
<p class="mb-0 text-center text-secondary" id="paige-prev">
<a class="link-secondary" href="{{ $page.PrevInSection.Permalink }}">&larr; {{ $page.PrevInSection.Title }}</a>
&larr; <a class="link-secondary" href="{{ $page.PrevInSection.Permalink }}">{{ $page.PrevInSection.Title }}</a>
</p>
{{ end }}
{{ if $page.NextInSection }}
<p class="mb-0 text-center text-secondary" id="paige-next">
<a class="link-secondary" href="{{ $page.NextInSection.Permalink }}">{{ $page.NextInSection.Title }} &rarr;</a>
<a class="link-secondary" href="{{ $page.NextInSection.Permalink }}">{{ $page.NextInSection.Title }}</a> &rarr;
</p>
{{ end }}
</div>