<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<?xml version="1.0" encoding="ISO-8859-1" ?> 

<xsl:template match="channel">
	


	<table cellspacing="0" cellpadding="0" border="0" class="texte">
		<tr>
			<td style="padding-left:60"><u>Actualité sur WRI - Référencement :</u></td>
		</tr>
		
		<xsl:for-each select="item">
		<xsl:if test="position() mod 2 = 0">
		
			<tr valign="top">
				<td width="500" style="padding-left:120">
					<a class="IndexLiens" target="_blank">
					<xsl:attribute name="href"><xsl:value-of select="link/text()"/></xsl:attribute>
					<xsl:value-of select="title/text()"/>
					</a>
				</td>
			</tr>
			
		</xsl:if>
		</xsl:for-each>
	</table>

</xsl:template>
</xsl:stylesheet>