aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/templates/categories.html
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2012-05-14 11:26:29 -0700
committerAlexis Metaireau <alexis@notmyidea.org>2012-05-14 11:26:29 -0700
commit858eb07eb94d36614d05697722c5055da6abd120 (patch)
tree311ea3ead0833a85fbbc7463739a26bec7443934 /bootstrap/templates/categories.html
parent2e0d1cae62b36ebef459e7b3ad5c8c83a0255c7f (diff)
parent9c349d82c60d06563e1c1fc52600179f702cebc2 (diff)
downloadpelican-themes-858eb07eb94d36614d05697722c5055da6abd120.tar.gz
Merge pull request #28 from kylef/url
Use object.url to get the url for author, category and tags
Diffstat (limited to 'bootstrap/templates/categories.html')
-rw-r--r--bootstrap/templates/categories.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/templates/categories.html b/bootstrap/templates/categories.html
index 4500237..de7cbc3 100644
--- a/bootstrap/templates/categories.html
+++ b/bootstrap/templates/categories.html
@@ -3,7 +3,7 @@
{% block content %}
<ul>
{% for category, articles in categories %}
- <li><a href="{{ SITEURL }}/category/{{ category }}.html">{{ category }}</a></li>
+ <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}