25 lines
858 B
XML
25 lines
858 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<rss version="2.0"
|
|
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
|
|
|
<channel>
|
|
<title><%= titles['name'] %></title>
|
|
<link>https://<%= titles['url'] %></link>
|
|
<language>en-us</language>
|
|
<itunes:author>Intergalactic FM</itunes:author>
|
|
<description>Latest uploads</description>
|
|
<itunes:explicit>no</itunes:explicit>
|
|
|
|
<% for i, file in ipairs(latestpath) do %>
|
|
<item>
|
|
<title><%= latestname[i] %></title>
|
|
<enclosure url="<%= datapath .. file %>" length="<%= latestsize[i] %>" type="audio/mpeg"/>
|
|
<guid><%= datapath .. file %></guid>
|
|
<pubDate><%= latestdate[i] %></pubDate>
|
|
<description><![CDATA[<%= latestname[i] %>]]></description>
|
|
</item>
|
|
<% end %>
|
|
</channel>
|
|
</rss>
|