<?xml version="1.0" encoding="utf-8"?><!-- DWXMLSource="Podcast.xml" -->
<!DOCTYPE xsl:stylesheet  [
]>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="utf-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
<xsl:template match="/">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Planet Terry Podcast</title>
</head>

 <body style="font-family:Arial, Helvetica, sans-serif; font-size:12px">
 
 <span style="bold">
   <xsl:for-each select="rss/channel">
  
<xsl:value-of select="title" /> <br />
  </xsl:for-each>
  <br />
</span> 
 
  <xsl:for-each select="rss/channel/item">
<xsl:value-of select="title" /> <br />
<xsl:value-of select="description" /> <br />
<a href="{enclosure/@url}"><xsl:value-of select="enclosure/@url"/></a><br /><br />


  </xsl:for-each>
  <br />
  </body>
</html>

</xsl:template>
</xsl:stylesheet>