22 lines
847 B
XML
22 lines
847 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
|
||
<channel>
|
||
<title>DiscDrop – New Releases</title>
|
||
<link>http://localhost:8080/</link>
|
||
<description>Release groups from the MusicBrainz artists you follow on DiscDrop.</description>
|
||
<lastBuildDate>{buildDate}</lastBuildDate>
|
||
{#for item in items}
|
||
<item>
|
||
<title>{item.title}</title>
|
||
<link>{item.link}</link>
|
||
<guid isPermaLink="true">{item.guid}</guid>
|
||
{#if item.pubDate??}
|
||
<pubDate>{item.pubDate}</pubDate>
|
||
{/if}
|
||
<description><![CDATA[ {item.description} ]]></description>
|
||
<media:content url="{item.mediaUrl}" type="image/jpeg" medium="image"/>
|
||
</item>
|
||
{/for}
|
||
</channel>
|
||
</rss>
|