<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:rs='urn:schemas-microsoft-com:rowset' xmlns:z='#RowsetSchema'
xmlns:date="http://exslt.org/dates-and-times"
extension-element-prefixes="date"
version="1.0">

<xsl:output method="html" indent="yes" omit-xml-declaration="yes"/>

<xsl:template match="/data">
	<table border="0" height="100%" width="100%" id="tableDestacada" cellspacing="2" cellpadding="2">
		<xsl:apply-templates select="row"/>	
<td valign="bottom">
	<A style="text-decoration:underline;">
	<xsl:attribute name="href">/News/Paginas/TodasMorganStanley.aspx<xsl:value-of select="FileLeafRef" /></xsl:attribute>
	Más...</A>
</td>
	</table>
	
</xsl:template>

<xsl:template match="row">
			<TR>
      <TD width="100%">
      <a >
      <xsl:attribute name="href">/News/Paginas/<xsl:value-of select="FileLeafRef" /></xsl:attribute>
      <xsl:value-of select="Title" />
      </a>
      </TD></TR>
</xsl:template>
</xsl:stylesheet>
