diff --git a/src/feed.11ty.liquid b/src/feed.11ty.liquid
index f7e9f1f2..ac90c2e0 100644
--- a/src/feed.11ty.liquid
+++ b/src/feed.11ty.liquid
@@ -12,7 +12,7 @@ permalink: '/feed.json'
   {
   "title": "{{ item.data.title }}",
   "url": "{{ item.url }}"
-  }{% if not loop.last %},{% endif %}
+  }{% if not forloop.last %},{% endif %}
 {% endfor %}
 ]
 }
\ No newline at end of file
diff --git a/src/follow.11ty.liquid b/src/follow.11ty.liquid
index d5c61df5..171ce549 100644
--- a/src/follow.11ty.liquid
+++ b/src/follow.11ty.liquid
@@ -12,7 +12,7 @@ permalink: '/follow.json'
   {
   "title": "{{ item.title }}",
   "url": "{{ item.url }}"
-  }{% if not loop.last %},{% endif %}
+  }{% if not forloop.last %},{% endif %}
 {% endfor %}
 ]
 }
\ No newline at end of file