diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f6eed9..269d2ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,6 @@ - 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 diff --git a/src/zona/builder.py b/src/zona/builder.py index dd9509f..37a3bd1 100644 --- a/src/zona/builder.py +++ b/src/zona/builder.py @@ -229,7 +229,7 @@ class ZonaBuilder: self._build() if self.config.feed.enabled: rss = self.generate_feed() - path = self.layout.output / self.config.feed.path + path = self.layout.content / self.config.feed.path util.ensure_parents(path) path.write_bytes(rss) self.fresh = False