diff options
author | Justin Mayer <entroP@gmail.com> | 2014-04-24 18:30:20 -0700 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2014-04-24 18:30:20 -0700 |
commit | 0108638f678c379222cfc6719bdc05e22f438339 (patch) | |
tree | 7cbbd567ceedf32134a781b5a14263ff9070c8b6 /foundation-default-colours | |
parent | 913446c76439bf7d6bca2486dbca94285358006a (diff) | |
parent | b6a040e83e6ef54c2b334af32aa491f7390bb679 (diff) | |
download | pelican-themes-0108638f678c379222cfc6719bdc05e22f438339.tar.gz |
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.html | 2 |
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> |