Ohne die Sibling-Achsen:
<xsl:for-each select="partner">
<xsl:sort select="number(id)" order="ascending"/>
<xsl:if test="position() = 1">
<xsl:copy-of select="."/>
</xsl:if>
</xsl:for-each>
Cheers! David
Ohne die Sibling-Achsen:
<xsl:for-each select="partner">
<xsl:sort select="number(id)" order="ascending"/>
<xsl:if test="position() = 1">
<xsl:copy-of select="."/>
</xsl:if>
</xsl:for-each>
Cheers! David