diff options
author | Hannes Bellmer <git@bellmer.org> | 2015-03-20 11:22:21 +0100 |
---|---|---|
committer | Hannes Bellmer <git@bellmer.org> | 2015-03-20 11:22:21 +0100 |
commit | 10546bbb54bbddad2962193b980df413e3ee91e1 (patch) | |
tree | 9d7602a81351654cf4932a7cb4fc0d21a91daa1f /foundation-default-colours/templates | |
parent | 9508d29437047cd9c6a81f7d566a502af755114f (diff) | |
download | pelican-themes-10546bbb54bbddad2962193b980df413e3ee91e1.tar.gz |
fixed an issue with tag-cloud-links
Diffstat (limited to 'foundation-default-colours/templates')
-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 8f4309c..ac639c0 100644 --- a/foundation-default-colours/templates/base.html +++ b/foundation-default-colours/templates/base.html @@ -156,7 +156,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><a href="/tag/{{ tag.0|lower|replace(' ', '-') }}.html" class="tag-{{ tag.1 }}">{{ tag.0 }}</a></li> {% endfor %} </ul> </div> |