Skip to content

Commit

Permalink
post navigation: 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 ba46ef8 commit 158672a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,17 @@
{% if page.previous.url %}
<li class="page-item previous">
<a class="page-link" href="{{ page.previous.url | relative_url }}" data-toggle="tooltip" data-placement="top" title="{{page.previous.title | strip_html | xml_escape}}">
<i class="fas fa-arrow-left" alt="Previous Post"></i>
<span class="d-none d-sm-inline-block">Previous Post</span>
</a>
<i class="fas fa-arrow-left" alt="Previous Post"></i>
<span class="d-none d-sm-inline-block">Previous Post</span>
</a>
</li>
{% endif %}
{% if page.next.url %}
<li class="page-item next">
<a class="page-link" href="{{ page.next.url | relative_url }}" data-toggle="tooltip" data-placement="top" title="{{page.next.title | strip_html | xml_escape}}">
<i class="fas fa-arrow-right" alt="Next Post"></i>
<span class="d-none d-sm-inline-block">Next Post</span>
</a>
<span class="d-none d-sm-inline-block">Next Post</span>
<i class="fas fa-arrow-right" alt="Next Post"></i>
</a>
</li>
{% endif %}
</ul>
Expand Down

0 comments on commit 158672a

Please sign in to comment.