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:
parent
d6fc278a06
commit
f409e00c31
1 changed files with 2 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue