Compare commits

..

3 commits

Author SHA1 Message Date
dc11436076 wip: templates cli
Some checks failed
/ test-build (push) Failing after 20s
2025-07-18 00:41:20 -04:00
182b30a4ef fix: rss feed is no longer written to content directory
Some checks failed
/ test-build (push) Failing after 19s
2025-07-18 00:41:04 -04:00
312818d8a6 doc: updated changelog
Some checks failed
/ test-build (push) Failing after 18s
2025-07-18 00:38:32 -04:00
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@
- Added RSS feed generation.
- Added default post description to configuration.
- Added time-of-day support to post `date` frontmatter parsing.
- `zona init` now only writes `footer.md` to the templates directory.
# 1.2.1

View file

@ -229,7 +229,7 @@ class ZonaBuilder:
self._build()
if self.config.feed.enabled:
rss = self.generate_feed()
path = self.layout.content / self.config.feed.path
path = self.layout.output / self.config.feed.path
util.ensure_parents(path)
path.write_bytes(rss)
self.fresh = False