<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:rss="http://purl.org/rss/1.0/"
>
<xsl:output method='html' />
<xsl:template match="/">
    <ul>
    <xsl:for-each select="//rss:item">
    <li class='bloglink'>
      <a href='{rss:link}'><xsl:value-of select="rss:title"/></a>
      <xsl:if test='rss:title != rss:description'>
        <xsl:text> </xsl:text>
        <span class='description'><xsl:value-of select='rss:description' /></span>
      </xsl:if>
    </li>
    </xsl:for-each>
    </ul>
</xsl:template>

</xsl:stylesheet>
