<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:default="http://www.spase-group.org/data/schema" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1"> <xsl:template match="/target"> <html> <body> <h2> <xsl:value-of select="@name"/> </h2> <p>The following missions are available : <ul> <!--<xsl:for-each select="missionGroup"> <xsl:if test="not(@name = 'None')"> <b><i><xsl:value-of select="@name"/></i></b> </xsl:if>--> <xsl:for-each select="missionGroup/mission"> <li> <b><xsl:value-of select="@name"/></b><br/> <xsl:value-of select="start"/> - <xsl:value-of select="stop"/> </li> </xsl:for-each> <!--</xsl:for-each>--> </ul> </p> </body> </html> </xsl:template> </xsl:stylesheet>