This commit is contained in:
akp 2025-02-15 14:51:00 +00:00
parent 03e3551280
commit 3dfb1e3c94
No known key found for this signature in database
GPG key ID: CF8D58F3DEB20755

View file

@ -13,7 +13,7 @@ def _get_feed_title(site_config: any) -> str:
return f"{site_config['person']['nickname']}'s blog"
def atom(site_coatedPost]) -> str:
def atom(site_config: any, posts: list[AbbreviatedPost]) -> str:
root = ElementTree.Element("feed", xmlns="http://www.w3.org/2005/Atom")
blog_url = get_absolute_url(site_config, "/blog/")