<?xml version="1.0" ?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0">

  <xsl:output method="wml"/>

  <xsl:template match="/">
    <WML><CARD ID="id1">
      <xsl:attribute name="TITLE">
        <xsl:value-of select="/channel/title"/>
      </xsl:attribute>
      <xsl:apply-templates/>
    </CARD></WML>
  </xsl:template>

  <xsl:template match="channel">
    <DO TYPE="accept">
      <xsl:attribute name="LABEL">
        <xsl:value-of select="title"/>
      </xsl:attribute>
      <GO>
      <xsl:attribute name="HREF">
        <xsl:value-of select="link"/>
      </xsl:attribute>
      </GO>
    </DO>
  </xsl:template>

  <xsl:template match="item">
    <DO TYPE="accept">
      <xsl:attribute name="label">
        <xsl:value-of select="title"/>
      </xsl:attribute>
      <GO>
      <xsl:attribute name="HREF">
        <xsl:value-of select="link"/>
      </xsl:attribute>
      </GO>
    </DO>
  </xsl:template>

  <xsl:template match="text()"/>

</xsl:stylesheet>
