Skip to content

Commit d252b55

Browse files
committed
fix buggy
fix buggy
1 parent 20516d3 commit d252b55

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ <h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
1919
<!-- Pagination links -->
2020
<div class="pagination">
2121
{% if paginator.previous_page %}
22-
<a href="{{ paginator.previous_page_path }}" class="previous">
22+
<a href="{{ paginator.previous_page_path }}" class="previous under">
2323
Previous
2424
</a>
2525
{% else %}
26-
<span class="previous under">Previous</span>
26+
<span class="previous">Previous</span>
2727
{% endif %}
2828
&nbsp;&middot;&nbsp;
2929
{% if paginator.next_page %}
30-
<a href="{{ paginator.next_page_path }}" class="next">Next</a>
30+
<a href="{{ paginator.next_page_path }}" class="next under">Next</a>
3131
{% else %}
32-
<span class="next under">Next</span>
32+
<span class="next">Next</span>
3333
{% endif %}
3434
</div>

0 commit comments

Comments
 (0)