<?xml version="1.0" encoding="ISO-8859-1"?><xsl:stylesheet version="1.0"  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  xmlns:date="http://exslt.org/dates-and-times"><xsl:template match="/"><xsl:for-each select="rss/channel/item"><!-- xsl:sort select="pubDate" order="descending"/ --><xsl:sort select="title" order="ascending"/><xsl:if test="position() = 7"><h1 style="font-size: 30pt;color:green;background-color:white"><font size="5"><xsl:value-of select="title" disable-output-escaping="yes"/></font></h1><table style="table-layout:fixed;width:100%;word-wrap:break-word;"> <tr>  <td align="left">   <span class="itemname"><font size="3">    <a>     <xsl:attribute name="style">color:blue;</xsl:attribute>     <xsl:attribute name="href"><xsl:value-of select="link" /></xsl:attribute>     <xsl:attribute name="title"><xsl:value-of select="title" disable-output-escaping="yes" /></xsl:attribute>     <xsl:value-of select="title" disable-output-escaping="yes" />    </a>   </font></span>  </td> </tr> <tr>  <td valign="center"><font size="3"><xsl:value-of select="description" disable-output-escaping="yes" /></font></td> </tr></table><br/></xsl:if></xsl:for-each></xsl:template></xsl:stylesheet>
