<!--- Match toe element. ---> <xsl:template match="toe"> <!--- Describe toe. ---> <xsl:choose> <xsl:when test="@isbigtoe"> Big! </xsl:when> <xsl:when test="@iscute"> Cute! </xsl:when> <xsl:otherwise> N/A </xsl:otherwise> </xsl:choose> </xsl:template>