Update pagination.html

This commit is contained in:
kuoi 2021-12-28 23:53:08 +00:00 committed by GitHub
parent 1e1398f3b3
commit 527147307b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<ul class="pagination">
{{ with .Prev }}
<li class="page-item">
<a class="page-link" href="{{ .URL }}">
<a class="page-link" href="{{ .Permalink }}">
<i class="fas fa-chevron-left"></i>
</a>
</li>
@ -16,7 +16,7 @@
{{ end }}
{{ with .Next }}
<li class="page-item">
<a class="page-link" href="{{ .URL }}">
<a class="page-link" href="{{ .Permalink }}">
<i class="fas fa-chevron-right"></i>
</a>
</li>