mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-26 02:37:08 +00:00
48 lines
2.3 KiB
XML
Executable File
48 lines
2.3 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<ttl>60</ttl>
|
|
<title>Deep South Sounds Podcast</title>
|
|
<description>Deep House Music with a Cork twist</description>
|
|
<link>http://www.deepsouthsounds.com/podcast/</link>
|
|
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml"
|
|
href="http://deepsouthsounds.com/podcasts/"/>
|
|
<language>en-IE</language>
|
|
<copyright>All your muziq is belong to us</copyright>
|
|
<image>
|
|
<url>http://static.deepsouthsounds.com/img/dss-large.png</url>
|
|
<title>Deep South Sounds Podcast</title>
|
|
<link>http://www.deepsouthsounds.com</link>
|
|
<width>200</width>
|
|
<height>200</height>
|
|
<description>Deep House Music with a Cork twist</description>
|
|
</image>
|
|
<itunes:subtitle>Deep House Music with a Cork twist</itunes:subtitle>
|
|
<itunes:author>Deep South Sounds</itunes:author>
|
|
<itunes:summary>Deep House Music with a Cork twist</itunes:summary>
|
|
<itunes:owner>
|
|
<itunes:name>Deep South Sounds</itunes:name>
|
|
<itunes:email>admin@deepsouthsounds.com</itunes:email>
|
|
</itunes:owner>
|
|
<itunes:image href="http://static.deepsouthsounds.com/img/dss-large.png"/>
|
|
<itunes:category text="Music">
|
|
</itunes:category>
|
|
<itunes:explicit>no</itunes:explicit>
|
|
{% for item in items %}
|
|
<item>
|
|
<title>{{ item.title }}</title>
|
|
<itunes:author>Episode author</itunes:author>
|
|
<itunes:subtitle>{{ item.title }}</itunes:subtitle>
|
|
<itunes:summary>{{ item.description|escape }}</itunes:summary>
|
|
<itunes:image href="{{ item.get_image_url }}"/>
|
|
<itunes:explicit>no</itunes:explicit>
|
|
<enclosure url="{{ item.get_download_url }}" length="100" type="audio/x-m4a"/>
|
|
<guid>{{ item.get_download_url }}</guid>
|
|
<pubDate>{{ item.get_date_as_rfc822 }}</pubDate>
|
|
<itunes:duration>100</itunes:duration>
|
|
<itunes:keywords>deep, house, music</itunes:keywords>
|
|
</item>
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|