17 lines
511 B
XML
17 lines
511 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>{{ title }}</title>
|
|
<link>{{ octomode_link }}</link>
|
|
<description>Podcast generated etcot.</description>
|
|
<lastBuildDate>builtdate..todo</lastBuildDate>
|
|
<atom:link href="{{ rss_link }}" rel="self" type="application/rss+xml" />
|
|
{% for link in audio %}
|
|
<item>
|
|
<pubDate>todo</pubDate>
|
|
<enclosure url="{{ link }}" type="audio/mpeg" />
|
|
</item>
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|