1
0
Fork 0
forked from github/pelican

Fix a broken URL in the simple template

This commit is contained in:
Kyle Fuller 2012-05-14 18:33:49 +01:00
commit 2c1c05923d

View file

@ -21,7 +21,7 @@
{% endfor %}
{% else %}
{% for cat, null in categories %}
<li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}/category/{{ cat }}.html">{{ cat }}</a></li>
<li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
{% endfor %}
{% endif %}
</ul></nav><!-- /#menu -->