Rename theme path

This commit is contained in:
Dave Gallant
2024-01-07 10:19:25 -05:00
parent b9926ba634
commit 51bd556992
122 changed files with 1 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
<div class="pagination">
{{ if .HasPrev }}
<span class="pagination__button pagination__button--previous">
<a href="{{ .Prev.URL }}">
<span><</span>
<span>Newer Posts</span>
</a>
</span>
{{ end }}
{{ if .HasNext }}
<span class="pagination__button pagination__button--next">
<a href="{{ .Next.URL }}">Older Posts &gt;</a>
</span>
{{ end }}
</div>