forked from github/pelican
Fix a broken URL in the simple template
This commit is contained in:
parent
1779b66f10
commit
2c1c05923d
1 changed files with 1 additions and 1 deletions
|
|
@ -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 -->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue