Use aquo entities for next, prev links

This commit is contained in:
Will Faught
2024-06-26 20:59:54 -07:00
parent ad477e3a5b
commit aaffec930c
2 changed files with 6 additions and 6 deletions

View File

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