Skip to content

Commit

Permalink
bug #1015 Fix pagination class (ogizanagi)
Browse files Browse the repository at this point in the history
This PR was merged into the master branch.

Discussion
----------

Fix pagination class

Commits
-------

e6a2410 Fix pagination class
  • Loading branch information
javiereguiluz committed Jul 24, 2019
2 parents f162931 + e6a2410 commit 6bdc4ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/blog/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
{% endfor %}

{% if paginator.hasNextPage %}
<li class="prev"><a href="{{ path('blog_index_paginated', {page: paginator.nextPage}) }}" rel="next">Next <i class="fa fw fa-arrow-right"></i></a></li>
<li class="next"><a href="{{ path('blog_index_paginated', {page: paginator.nextPage}) }}" rel="next">Next <i class="fa fw fa-arrow-right"></i></a></li>
{% else %}
<li class="next disabled"><span>Next <i class="fa fw fa-arrow-right"></i></span></li>
{% endif %}
Expand Down

0 comments on commit 6bdc4ce

Please sign in to comment.