XSL (after substitution) C:\inetpub\wwwroot\Sites\cesegab.com\Portals\0\xslt\Lista_Actividades.xsl <?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="html" indent="yes"/> <xsl:template match="/root"> <div id="actividades_list"> <ul> <xsl:apply-templates select="/root/Events"></xsl:apply-templates> </ul> </div> </xsl:template> <xsl:template match="/root/Events"> <xsl:variable name="quotes">&#34;</xsl:variable> <li class="margin-bottom-6"> <h3 class="text-transform-none"> <xsl:choose> <xsl:when test="Language = 'eu-es'"> <a href="http://www.cesegab.com/{Language}/Jarduera/Agenda/ModuleID/{Moduleid}/ItemID/{EventID}/mctl/EventDetails"> <xsl:value-of select="EventName"/> <xsl:value-of select="EventTime"/> </a> </xsl:when> <xsl:otherwise> <a href="http://www.cesegab.com/{Language}/Actividades/Agenda/ModuleID/{Moduleid}/ItemID/{EventID}/mctl/EventDetails"> <xsl:value-of select="EventName"/> <xsl:value-of select="EventTime"/> </a> </xsl:otherwise> </xsl:choose> </h3> <xsl:if test="ImageURL != ''"> <img src="{ImageURL}" /><br/> </xsl:if> <xsl:value-of disable-output-escaping="yes" select="EventDesc" /> <br/> <br/> </li> </xsl:template> </xsl:stylesheet> --