Remove Atom feed limit to include all posts in blog.json

Set FEED_MAX_ITEMS = None to include all posts in the Atom feed.

Before: blog.json had only 100 posts (Pelican default limit)
After: blog.json has all 188 published posts

This ensures blog.json contains the complete blog archive for
AI agent consumption and the russell.on.unsandbox.com deployment.
This commit is contained in:
russell@unturf.com 2026-01-19 17:20:44 -05:00
parent d6fc278a06
commit f409e00c31

View file

@ -55,6 +55,8 @@ DEFAULT_LANG = "en"
# Atom all feed.
FEED_ALL_ATOM = "feeds/all.atom.xml"
# Include all posts in feed (no limit) for blog.json generation
FEED_MAX_ITEMS = None
# Feed generation is usually not desired when developing
CATEGORY_FEED_ATOM = None