Files
mbz-rss-feeder/mbz_rss_service/templates/opml.xml
T
2025-12-27 17:09:43 +01:00

13 lines
564 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<opml version="2.0">
<head>
<title>MusicBrainz Artist Feeds</title>
</head>
<body>
<outline text="MusicBrainz Artist Feeds" title="MusicBrainz Artist Feeds">
{% for feed in feeds %}
<outline type="rss" text="{{ (feed.artists | map(attribute='name') | sort | join(', ')) }}" title="{{ feed.name }} ({{ feed.artists | length }} artists)" xmlUrl="{{ url_for('get_feed_rss', feed_id=feed.id, _external=True) }}"/>
{% endfor %}
</outline>
</body>
</opml>