]> zackmdavis.net Git - An_Algorithmic_Lucidity.git/commitdiff
RSS format?
authorZack M. Davis <code@zackmdavis.net>
Wed, 15 Jul 2026 23:12:15 +0000 (16:12 -0700)
committerZack M. Davis <code@zackmdavis.net>
Wed, 15 Jul 2026 23:12:15 +0000 (16:12 -0700)
Um, I think the gender blog is on Atom, but Claude did this to match
the WordPress setup?

publishconf.py

index 8ed2a08bee453f354707b68ab3d7af556a2de9c1..7b813a37b1cf5e7674649a2c5675a8ead94631cb 100644 (file)
@@ -12,8 +12,13 @@ from pelicanconf import *
 # If you have a custom domain, set it here
 # SITEURL = 'https://yourdomain.com'
 
-FEED_ALL_ATOM = 'feeds/all.atom.xml'
-CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml'
+# RSS (not Atom) to match the existing WordPress feed's format at
+# zackmdavis.net/blog/feed/. The output path is feed/index.xml rather than
+# a bare feed/ so it's a real static file; getting the URL down to exactly
+# /feed/ (no filename) needs a webserver directory-index or redirect rule,
+# which depends on whatever we end up hosting on.
+FEED_ALL_RSS = 'feed/index.xml'
+CATEGORY_FEED_RSS = 'category/{slug}/feed/index.xml'
 
 DELETE_OUTPUT_DIRECTORY = True