<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0" >
    <xsl:template match="/">
        <html>
            <head>
                <title>
                    <xsl:value-of select="RDF/channel/title"/>
                </title>
            </head>
            <body>
	      <p>This page made with XSLT! </p> <!-- test message -->

              <div class="channel" id="planet">
                 <h1> <xsl:value-of select="RDF/channel/title"/> </h1>
                 <p>  <xsl:value-of select="RDF/channel/description"/> </p>
	         <a href="{RDF/channel/link}">
                   <img alt="RSS channel" src="feed-icon-24x24.png"/>
                 </a>
              </div>
            </body>
        </html>
    </xsl:template>
    <xsl:template match="channel">
    </xsl:template>
</xsl:stylesheet>

