octomode/templates/podcast.rss

17 lines
511 B
XML
Raw Normal View History

2023-11-30 14:41:07 +01:00
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
2023-11-30 15:27:23 +01:00
<title>{{ title }}</title>
<link>{{ octomode_link }}</link>
2023-11-30 14:41:07 +01:00
<description>Podcast generated etcot.</description>
<lastBuildDate>builtdate..todo</lastBuildDate>
2023-11-30 15:27:23 +01:00
<atom:link href="{{ rss_link }}" rel="self" type="application/rss+xml" />
2023-11-30 14:41:07 +01:00
{% for link in audio %}
<item>
<pubDate>todo</pubDate>
2023-11-30 15:27:23 +01:00
<enclosure url="{{ link }}" type="audio/mpeg" />
2023-11-30 14:41:07 +01:00
</item>
{% endfor %}
</channel>
</rss>