I believe the <channel> tag is supposed to wrap everything inside of the <rdf:RDF> tag. So you'd want this:
HTML Code:
<rdf:RDF>
<channel rdf:about="http://www.bestkeptsimple.org/">
<title>bestkeptsimple.org</title>
<link>http://www.bestkeptsimple.org</link>
<description>RSS feeds for today</description>
<dc:language>en-us</dc:language>
<dc:date>2005-01-26T18:42:47+01:00</dc:date>
<item rdf:about="http://www.xmlmania.com">
<title>2004's Hottest songs via SMS</title>
<description>
In Australia, SMS was used to take in votes for the Hottest 100 music tracks of 2004.
</description>
<link>http://www.bestkeptsimple.org/archives/0005420.php</link>
</item>
</channel>
</rdf:RDF>
|