Skip to content

Commit

Permalink
page naviation: move arrow to correct location
Browse files Browse the repository at this point in the history
  • Loading branch information
daattali committed Oct 27, 2023
1 parent 158672a commit 8854d96
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,17 +105,17 @@ <h3 class="post-subtitle">
{% if paginator.previous_page %}
<li class="page-item previous">
<a class="page-link" href="{{ paginator.previous_page_path | absolute_url }}">
<i class="fas fa-arrow-left" alt="Newer Posts"></i>
<span class="d-none d-sm-inline-block">Newer Posts</span>
</a>
<i class="fas fa-arrow-left" alt="Newer Posts"></i>
<span class="d-none d-sm-inline-block">Newer Posts</span>
</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="page-item next">
<a class="page-link" href="{{ paginator.next_page_path | absolute_url }}">
<span class="d-none d-sm-inline-block">Older Posts</span>
<i class="fas fa-arrow-right" alt="Older Posts"></i>
<span class="d-none d-sm-inline-block">Older Posts</span>
</a>
</a>
</li>
{% endif %}
</ul>
Expand Down

0 comments on commit 8854d96

Please sign in to comment.