-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve broken URLs in
pagination
& series sidebar
widgets.
- Loading branch information
1 parent
3a7650d
commit b7b9263
Showing
4 changed files
with
26 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
<nav class="pagination" role="navigation"> | ||
|
||
<a class="pagination-arrow newer-posts {{#unless prev}}hidden{{/unless}}" href="{{page_url prev}}"> | ||
<i class="fa-sharp fa-solid fa-arrow-left"></i> | ||
</a> | ||
|
||
{{#if prev}} | ||
<a class="pagination-arrow newer-posts" href="{{page_url prev}}"> | ||
<i class="fa-sharp fa-solid fa-arrow-left"></i> | ||
</a> | ||
{{else}} | ||
<div class="fake-pagination-button"></div> | ||
{{/if}} | ||
<span class="page-number">Page {{page}} of {{pages}}</span> | ||
|
||
<a class="pagination-arrow older-posts {{#unless next}}hidden{{/unless}}" href="{{page_url next}}"> | ||
<i class="fa-sharp fa-solid fa-arrow-right"></i> | ||
</a> | ||
{{#if next}} | ||
<a class="pagination-arrow older-posts }" href="{{page_url next}}"> | ||
<i class="fa-sharp fa-solid fa-arrow-right"></i> | ||
</a> | ||
{{else}} | ||
<div class="fake-pagination-button"></div> | ||
{{/if}} | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters