<xsl:stylesheet
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:gphoto="http://schemas.google.com/photos/2007"
  xmlns:media="http://search.yahoo.com/mrss/"
  xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="2.0">
  <xsl:template match="/">
    <xsl:apply-templates select="item"/>
  </xsl:template>
  <xsl:template match="item">
    <style>
    </style>
    <h2>
      <xsl:apply-templates select="title"/>
    </h2>
    <p>
      <xsl:apply-templates select="description"/>
    </p>
    <p style="width: 100%; clear:both;"/>
  </xsl:template>
</xsl:stylesheet>