diff options
Diffstat (limited to 'theme/templates/categories.html')
-rwxr-xr-x | theme/templates/categories.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/templates/categories.html b/theme/templates/categories.html index 0cd25d4..b63eef8 100755 --- a/theme/templates/categories.html +++ b/theme/templates/categories.html @@ -9,7 +9,7 @@ <li> <a href="{{ category.url }}">{{ category }}</a> ({{ articles|count }}) {% if CATEGORY_FEED_RSS %} - <a href="{{ SITEURL }}/{{ CATEGORY_FEED_RSS % category }}" ><img src="theme/images/rss.png" /></a> + <a href="{{ SITEURL }}/{{ CATEGORY_FEED_RSS.format(slug=category) }}" ><img src="theme/images/rss.png" /></a> {% endif %} </li> {% endfor %} |