
<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 width="100%" cellpadding="0" cellspacing="0"    border="0" style=" background-color:#f5f5f5;"  id="table73">
		<xsl:for-each select="row">
			<xsl:if test="position() mod 1 = 1"><xsl:value-of select="string('&lt;tr&gt;')" disable-output-escaping="yes"/></xsl:if>
			<td width="25%;" valign="top" style=""><xsl:apply-templates select="."/></td>
			<xsl:if test="position() mod 1 = 0"><xsl:value-of select="string('&lt;/tr&gt;')" disable-output-escaping="yes"/></xsl:if>
		</xsl:for-each>
	</table>	
</xsl:template>
<xsl:template match="row">
<table cellpadding="0" cellspacing="0" style=" vertical-align:top; background-position:left top; margin-top:0px;padding-top:0px; width:100%; ">
<tbody>

			<tr>
				<td valign="top">
				<table cellpadding="0" cellspacing="2" width="100%" style="border-bottom:1px solid #ccc; border-top:1px solid #f1f2f3">
					<tr>
						<td colspan="3" style="font-size:4pt;">&#160;</td>
					</tr>
					<tr>
					<td  style="text-align:left;width:25px;padding-right:5px;">
						<img style="width:25px;" src="/ImagenesEduca/Calendario.gif">
						</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>
				</table>
				</td>
			</tr>
		</tbody>
</table>
</xsl:template>
</xsl:stylesheet>


