fix/generator: rss feed atom link

This commit is contained in:
Kentai Radiquum 2025-02-23 05:53:16 +05:00
parent 9ef71ad245
commit 49828fa7c3
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -14,7 +14,7 @@ export const rss = (images: Image[]) => {
}; };
function RSS({ children, lastPostDate }: any) { function RSS({ children, lastPostDate }: any) {
return ( return (
<rss version="2.0"> <rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel> <channel>
<title>Radiquum Photos</title> <title>Radiquum Photos</title>
<description>Online Gallery of @radiquum</description> <description>Online Gallery of @radiquum</description>
@ -22,6 +22,7 @@ function RSS({ children, lastPostDate }: any) {
<language>en-us</language> <language>en-us</language>
<category>Photography</category> <category>Photography</category>
<copyright>CC BY-SA 4.0</copyright> <copyright>CC BY-SA 4.0</copyright>
<atom:link href="https://radiquum.wah.su/photos/feed.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{new Date().toUTCString()}</lastBuildDate> <lastBuildDate>{new Date().toUTCString()}</lastBuildDate>
<pubDate>{new Date(lastPostDate).toUTCString()}</pubDate> <pubDate>{new Date(lastPostDate).toUTCString()}</pubDate>
</channel> </channel>