diff --git a/templates/_includes/feeds_categories.html b/templates/_includes/feeds_categories.html
index c69cfddd..7d6a87cf 100644
--- a/templates/_includes/feeds_categories.html
+++ b/templates/_includes/feeds_categories.html
@@ -1,13 +1,13 @@
{% if CATEGORY_FEED_ATOM %}
{% for category in categories %}
{% set cat_name = category[0].slug %}
-
+
{% endfor %}
{% endif %}
{% if CATEGORY_FEED_RSS %}
{% for category in categories %}
{% set cat_name = category[0].slug %}
-
+
{% endfor %}
{% endif %}
diff --git a/templates/_includes/feeds_tags.html b/templates/_includes/feeds_tags.html
index 74b2fc16..93ca6178 100644
--- a/templates/_includes/feeds_tags.html
+++ b/templates/_includes/feeds_tags.html
@@ -1,12 +1,12 @@
{% if TAG_FEED_ATOM %}
{% for tag in tags %}
{% set tag_name = tag[0].slug %}
-
+
{% endfor %}
{% endif %}
{% if TAG_FEED_RSS %}
{% for tag in tags %}
{% set tag_name = tag[0].slug %}
-
+
{% endfor %}
{% endif %}