summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2013-05-07 08:59:38 +0200
committerSébastien Dailly <sebastien@chimrod.com>2013-05-07 08:59:38 +0200
commitfaf19242226324b95ad96cb01d29131e7ba65e50 (patch)
treece4987686d55f2d9897591dccc9a064a0446c0da
parentc04d76adffd85d09e28c042aaea15c31ff3d14c1 (diff)
Updated syndication link
-rwxr-xr-xtheme/templates/category.html4
-rwxr-xr-xtheme/templates/tag.html4
2 files changed, 4 insertions, 4 deletions
diff --git a/theme/templates/category.html b/theme/templates/category.html
index b323285..a541a1c 100755
--- a/theme/templates/category.html
+++ b/theme/templates/category.html
@@ -22,11 +22,11 @@
{% include 'navigator.html' %}
{% if CATEGORY_FEED_RSS %}
- <a href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_RSS % category|e}}" ><img src="../theme/images/rss.png" /></a>
+ <a href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_RSS % category|e|lower}}" ><img src="../theme/images/rss.png" /></a>
{% endif %}
{% if CATEGORY_FEED_ATOM %}
- <a href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_ATOM % category|e}}" ><img src="../theme/images/atom.png" /></a>
+ <a href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_ATOM % category|e|lower}}" ><img src="../theme/images/atom.png" /></a>
{% endif %}
{% endblock %}
diff --git a/theme/templates/tag.html b/theme/templates/tag.html
index 8282855..059442a 100755
--- a/theme/templates/tag.html
+++ b/theme/templates/tag.html
@@ -22,11 +22,11 @@
{% include 'navigator.html' %}
{% if TAG_FEED_RSS %}
- <a href="{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS % tag|e}}" ><img src="../theme/images/rss.png" /></a>
+ <a href="{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS % tag|e|lower}}" ><img src="../theme/images/rss.png" /></a>
{% endif %}
{% if TAG_FEED_ATOM %}
- <a href="{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM % tag|e}}" ><img src="../theme/images/atom.png" /></a>
+ <a href="{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM % tag|e|lower}}" ><img src="../theme/images/atom.png" /></a>
{% endif %}
{% endblock %}