﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
  <xsl:output method="xml" indent="yes"/>

  <xsl:template match="/data">
    <table>
      <tr>
        <td style="height:51px;">
          <span class="nps-h3Rojo">RECETAS</span>
        </td>
        <td style="border-bottom-style:solid; border-bottom-width: 1px;border-bottom-color:#e7e7e7; padding:0px; font-size:4pt; " colspan="3">&#160;</td>


      </tr>

      <xsl:apply-templates select="row"/>
    </table>
  </xsl:template>

  <xsl:template match="row">
    <xsl:variable name="Url" select="substring-before(URLVista,',')"/>
    <xsl:if test="$Url!=''">
    <tr>
      <td>

        <a style=" font-size:11px; color:#b80e2b; tex-decoration=none" >
          <xsl:attribute name="href">
            <xsl:value-of select="$Url"/>
          </xsl:attribute>
          <xsl:value-of select="Title" />
        </a>
      </td>

    </tr>
    </xsl:if>
  </xsl:template>
</xsl:stylesheet>

