< ?xml version="1.0"? >
< xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dmx="http://www.bring2mind.net/dmx" >
< xsl:output method="html" indent="yes"/ >
< xsl:param name="ItemsToShow"/ >
< xsl:template match="rss" >
< table summary="DMX RSS Table" >
< thead >
< tr >
< th scope="col" > < span >Custom attribute I< /span > < /th >
< th scope="col" > < span >Custom attribute II< /span > < /th >
< th scope="col" > < span >Custom attribute III< /span > < /th >
< /tr >
< /thead >
< tbody >
< xsl:for-each select="channel/item[position()<=$ItemsToShow or $ItemsToShow<1]" >
< tr >
< td >< xsl:value-of select="dmx:att2" / >< /td >
< td >< xsl:value-of select="dmx:att3" / >< /td >
< td >< xsl:value-of select="dmx:att4" / >< /td >
< /tr >
< /xsl:for-each >
< /tbody >
< /table >
< /xsl:template >
< /xsl:stylesheet >