collection.xsl 406 B

1234567891011
  1. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  2. <xsl:include href="include.xsl"/>
  3. <xsl:param name="owner" select="'Nicolas Eliaszewicz'"/>
  4. <xsl:output method="html" encoding="iso-8859-1" indent="no"/>
  5. <xsl:template match="collection">
  6. Hey! Welcome to <xsl:value-of select="$owner"/>'s sweet CD collection!
  7. <xsl:apply-templates/>
  8. </xsl:template>
  9. </xsl:stylesheet>