-
Notifications
You must be signed in to change notification settings - Fork 10
Description
Hey, thanks for the plugin, I'm just setting it up for my Kirby blog. While porting my existing feed to Kirby I noticed that right now the rss.php snippet uses <guid>
as the unique identifier of an entry. I believe this should be <id>
according to the Atom spec, which is set as the content type here. The <guid>
element is from the RSS standard, not Atom.
There's some other fields too that are not from the Atom standard like the <link>
element which should be in the following format: <link href="http://example.org/2003/12/13/atom03"/>
, same for pubDate
which is <published>2003-12-13T09:17:51-08:00</published>
in Atom.
Edit: When I reported this first I thought it's just the guid / id issue but then realized the whole template is actually wrong. Maybe it would be best to change the content type there to be RSS and add a second atom.php template?