diff options
author | Anthony Wang | 2024-08-23 12:04:13 -0500 |
---|---|---|
committer | Anthony Wang | 2024-08-23 12:04:13 -0500 |
commit | 77fec891667291fab01dc5079143e8531cbab2ff (patch) | |
tree | 5472a209828e86b8a92e4befea3520cc6978c619 /config.toml | |
parent | 56258593825859d7c69dee1fe18e50dfd6a999fd (diff) |
Limit RSS feeds to 20 entries
This reduces bandwidth (probably not a huge difference), prevents non-posts from appearing in my top-level feed (which can cause weird date glitches in some feed readers since those pages don't have dates), and makes my feed more friendly to add to feed readers since it won't add dozens of posts
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config.toml b/config.toml index a62ff3b..ba19dd0 100644 --- a/config.toml +++ b/config.toml @@ -50,3 +50,7 @@ theme = 'gokarna' ] [params.author] email = 'Anthony Wang' + +[services] + [services.rss] + limit = 20 |