Skip to content

Commit

Permalink
Removing extraneous a and li tags (mmistakes#1038)
Browse files Browse the repository at this point in the history
Removing duplicate <a> and <li> closing tags in paginator include.
  • Loading branch information
mtlynch authored and mmistakes committed May 30, 2017
1 parent ae4e049 commit b2223ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/paginator.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down

0 comments on commit b2223ce

Please sign in to comment.