11 lines
406 B
XML
11 lines
406 B
XML
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
<xsl:include href="include.xsl"/>
|
|
|
|
<xsl:param name="owner" select="'Nicolas Eliaszewicz'"/>
|
|
<xsl:output method="html" encoding="iso-8859-1" indent="no"/>
|
|
<xsl:template match="collection">
|
|
Hey! Welcome to <xsl:value-of select="$owner"/>'s sweet CD collection!
|
|
<xsl:apply-templates/>
|
|
</xsl:template>
|
|
</xsl:stylesheet> |