
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:rs='urn:schemas-microsoft-com:rowset' xmlns:z='#RowsetSchema'
version="1.0">

<xsl:output method="html" indent="yes" omit-xml-declaration="yes"/>

<xsl:template match="/data">
	<table border="0" width="100%" id="table73">
		<xsl:apply-templates select="row"/>
	</table>	
</xsl:template>
<xsl:template match="row">

			<tr>
				<td valign="top">
				<table cellpadding="0" cellspacing="0" width="100%">
					<tr>
						<td colspan="3" style="font-size:4pt;">&#160;</td>
					</tr>
					<tr>
					<td  style="text-align:left; width:45px; padding-right:15px;">
						<img>
						<xsl:attribute name="src"><xsl:value-of select="substring-before(Imagen,',')"></xsl:value-of></xsl:attribute>
						</img>
					</td>
					<td align="left" valign="top" style="text-align: left;">
						<a style="color:#e89b1d; font-size:12px; font-weight:bold;">
						<!--<xsl:attribute name="href">/Educa/Lists/EnlacesDirectosHome/DispForm.aspx?ID=<xsl:value-of select="ID"/></xsl:attribute>-->
						<xsl:attribute name="href"><xsl:value-of select="URL"/></xsl:attribute>
						<xsl:value-of select="Title" disable-output-escaping="yes"/>
						</a>
						<span style="color:#484848; font-size:11px">
						<xsl:value-of select="Descripcion" disable-output-escaping="yes"/>
						</span>
					</td>
					</tr>
					<tr>
						<td colspan="3" style="font-size:4pt; border-bottom:1px solid #e7e7e7;">&#160;</td>
					</tr>
				</table>
				</td>
			</tr>
</xsl:template>
</xsl:stylesheet>


