aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap2
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2012-06-12 09:55:19 -0700
committerAlexis Metaireau <alexis@notmyidea.org>2012-06-12 09:55:19 -0700
commitfbe927103f060ee78ab81f5fedf230557c547d94 (patch)
tree5d8ad4fcb4a32c6884bec986da1c009fda1930c2 /bootstrap2
parent91a44bed54c26153a814aaa9abc7d8fb36892e92 (diff)
parentbbea9b8352877b8bd0928e0f6aaad4f484ff0fef (diff)
downloadpelican-themes-fbe927103f060ee78ab81f5fedf230557c547d94.tar.gz
Merge pull request #34 from sjz/master
cat.url.url was causing an error
Diffstat (limited to 'bootstrap2')
-rw-r--r--bootstrap2/templates/base.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap2/templates/base.html b/bootstrap2/templates/base.html
index e98d06e..d96470e 100644
--- a/bootstrap2/templates/base.html
+++ b/bootstrap2/templates/base.html
@@ -77,7 +77,7 @@
{% endif %}
{% for cat, null in categories %}
<li {% if cat == category %}class="active"{% endif %}>
- <a href="{{ SITEURL }}/{{ cat.url.url }}">
+ <a href="{{ SITEURL }}/{{ cat.url }}">
<i class="icon-folder-open icon-large"></i>{{ cat }}
</a>
</li>