fixed missing anchor closing tag

when next_url is none, big part of page html will be rendered under the <a href='#'> as it does not have a closing tag.
This commit is contained in:
mochawich 2015-03-13 17:03:51 +01:00
parent cc64e30f55
commit 2266fec99d

View File

@ -7,6 +7,6 @@
{% if next_url %} {% if next_url %}
<li class="next"><a href="{{ next_url }}">Next &raquo;</a></li> <li class="next"><a href="{{ next_url }}">Next &raquo;</a></li>
{% else %} {% else %}
<li class="next disabled"><a href="#">Next &raquo;</li> <li class="next disabled"><a href="#">Next &raquo;</a></li>
{% endif %} {% endif %}
</ul> </ul>