<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">

<channel>
<!--Everything goes in the channel tag-->

<itunes:owner><!--itunes specific. does not show publicly-->
	<itunes:name></itunes:name>
	<itunes:email></itunes:email>
</itunes:owner>
<itunes:category text="Music" /><!--podcast category in itunes-->
<itunes:author></itunes:author><!--itunes specific-->
<itunes:explicit>no</itunes:explicit>
<itunes:image href="" />

<title></title><!--Podcast Title-->
<description></description><!--Podcast Description-->
<link></link><!--Link to main webpage-->
<language>en-us</language><!--Optional, but helpful for rss readers-->
<copyright>Copyright 2009</copyright><!--This changes each year, obviously-->

<item><!--Each individial podcast item is given its own ITEM tag-->
<title></title>
<itunes:author></itunes:author><!--itunes specific: the Artist column in iTunes-->
<link></link><!--Link to the page about the specific podcast-->
<guid></guid><!--Link to the specific file-->
<description></description><!--Description of the speciifc item-->
<enclosure url="" length="" type="audio/mpeg"/><!--URL is the same as the URL in the GUID tag. Length is the number of bytes. TYPE follows a specific format.-->
<itunes:duration></itunes:duration><!--HH:MM:SS, H:MM:SS, MM:SS, or M:SS-->
<itunes:explicit>clean</itunes:explicit> <!--values "yes", "clean", "no" - clean and yes get icons to indicate-->
<itunes:keywords></itunes:keywords><!--up to 12 keywords, seperated by commas-->
<itunes:subtitle></itunes:subtitle><!--should only be a few words long. description column in itunes-->
<category>Podcasts</category><!--the category of the specific item-->
<pubDate></pubDate><!--Date the specific item was added-->
</item><!--End of the specific item-->


</channel>
</rss>