Commit 2266fec9 by mochawich

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.
parent cc64e30f
...@@ -7,6 +7,6 @@ ...@@ -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>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment