Hallo,
Ich möchte nun folgenden html output erreichen:
<xsl:template match="/">
<html><title></title><body>
<div class="links">
<-- richtigen Pfad beim select="" eintragen -->
<xsl:apply-templates select="HTMLTextSection/HTMLLink" />
</div>
</body></html>
</xsl:template>
<xsl:template match="HTMLLink">
<div>
<a href="{@URL}">
<xsl:value-of select="@Title"/>
</a>
</div>
</xsl:template>
Grüße
Thomas