diff --git a/source/feed.liquid b/source/feed.liquid
index 013718f..062974d 100644
--- a/source/feed.liquid
+++ b/source/feed.liquid
@@ -10,8 +10,8 @@ eleventyExcludeFromCollections: true
{{ collections.blog | getNewestCollectionItemDate | dateToRfc3339 }}
{%- assign posts = collections.blog | reverse -%}
- {%- for post in posts limit:6 %}
- {%- assign absolutePostUrl = post.url | absoluteUrl: site.url -%}
+ {%- for post in posts limit:6 -%}
+ {%- assign absolutePostUrl = post.url | absoluteUrl: site.url %}
{{ post.data.title }}
@@ -22,6 +22,5 @@ eleventyExcludeFromCollections: true
{{ post.data.author }}
{{ post.templateContent | htmlToAbsoluteUrls: absolutePostUrl | escape }}
-
- {% endfor -%}
+ {% endfor %}