aboutsummaryrefslogtreecommitdiffstats
path: root/foundation-default-colours
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2014-04-24 18:30:20 -0700
committerJustin Mayer <entroP@gmail.com>2014-04-24 18:30:20 -0700
commit0108638f678c379222cfc6719bdc05e22f438339 (patch)
tree7cbbd567ceedf32134a781b5a14263ff9070c8b6 /foundation-default-colours
parent913446c76439bf7d6bca2486dbca94285358006a (diff)
parentb6a040e83e6ef54c2b334af32aa491f7390bb679 (diff)
downloadpelican-themes-0108638f678c379222cfc6719bdc05e22f438339.zip
pelican-themes-0108638f678c379222cfc6719bdc05e22f438339.tar.gz
pelican-themes-0108638f678c379222cfc6719bdc05e22f438339.tar.bz2
Merge pull request #212 from NathanWilliams/tagcloudfix
Change tag-cloud in foundation-default-colours to respect config
Diffstat (limited to 'foundation-default-colours')
-rw-r--r--foundation-default-colours/templates/base.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/foundation-default-colours/templates/base.html b/foundation-default-colours/templates/base.html
index 849799a..26241a2 100644
--- a/foundation-default-colours/templates/base.html
+++ b/foundation-default-colours/templates/base.html
@@ -147,7 +147,7 @@
<h5>Tags</h5>
<ul class="tag-cloud">
{% for tag in tag_cloud %}
- <li><a href="/tag/{{ tag.0|lower|replace(' ', '-') }}/" class="tag-{{ tag.1 }}">{{ tag.0 }}</a></li>
+ <li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0 }}</a></li>
{% endfor %}
</ul>
</div>