Files
discdrop/src/main/resources/templates/rss.xml
T
2026-07-15 10:34:32 +02:00

22 lines
847 B
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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>