From 64448064ce1bc66eb923fa856bda3686fab7730d Mon Sep 17 00:00:00 2001 From: Boris Mann Date: Fri, 19 Jan 2024 08:30:15 -0800 Subject: [PATCH] Limited to 25 feed items #98 --- src/feed.njk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/feed.njk b/src/feed.njk index b22c72f..cb2b69a 100644 --- a/src/feed.njk +++ b/src/feed.njk @@ -17,6 +17,7 @@ date: Last Modified {{ collections.authors[0].name }} {%- for post in collections.posts %} + {% if loop.index0 < 30 %} {{ post.title }} @@ -24,5 +25,6 @@ date: Last Modified https://fission.codes/blog{{ post.url }} {{ post.html | htmlToAbsoluteUrls(site.url + page.url) }} + {% endif %} {%- endfor %}