Removing extraneous a and li tags (#1038)

Removing duplicate <a> and <li> closing tags in paginator include.
This commit is contained in:
Michael Lynch 2017-05-30 08:11:19 -04:00 committed by Michael Rose
parent de3954ac99
commit 8ed48c1cd5

View file

@ -60,7 +60,7 @@
{% comment %} Link next page {% endcomment %}
{% if paginator.next_page %}
<li><a href="{{ site.paginate_path | replace: ':num', paginator.next_page | replace: '//', '/' | absolute_url }}">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a></li></a></li>
<li><a href="{{ site.paginate_path | replace: ':num', paginator.next_page | replace: '//', '/' | absolute_url }}">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a></li>
{% else %}
<li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</span></a></li>
{% endif %}