Skip to content

Commit

Permalink
Remove prev, next page arrows from links
Browse files Browse the repository at this point in the history
  • Loading branch information
willfaught committed Jun 10, 2024
1 parent 06c8b1f commit 8e388f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layouts/partials/paige/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 8e388f6

Please sign in to comment.