fix/generator: rss Items should be inside of a channel tag

This commit is contained in:
Kentai Radiquum 2025-02-23 05:55:47 +05:00
parent 49828fa7c3
commit 922610babb
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -25,8 +25,8 @@ function RSS({ children, lastPostDate }: any) {
<atom:link href="https://radiquum.wah.su/photos/feed.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{new Date().toUTCString()}</lastBuildDate>
<pubDate>{new Date(lastPostDate).toUTCString()}</pubDate>
</channel>
{children}
</channel>
</rss>
);
}