<!--- Match toes element. ---> <xsl:template match="toes"> <!--- Loop over toes. ---> <xsl:for-each select="toe"> <xsl:value-of select="name" /> <xsl:text> - </xsl:text> </xsl:for-each> </xsl:template>