The clean & modern RSS server that doesn't give you any crap. https://thearsse.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
517 B

<?php return [
'mime' => "application/rss+xml",
'content' => <<<MESSAGE_BODY
<rss version="2.0">
<channel>
<title>Some feed</title>
<link>http://example.com/</link>
<description>Just a generic feed</description>
<item>
<guid>http://localhost:8000/Import/some-feed/some-article</guid>
<title>Some article</title>
<description>This feed is used only to demonstrate failure modes external to the feed itself</description>
</item>
</channel>
</rss>
MESSAGE_BODY
];