Listing of scoreblock.xsl

<?xml version='1.0' encoding="utf-8"?>
<xsl:stylesheet version="1.0" 
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="block"/>
<xsl:template match="/">
  <html>
    <head>
      <link rel="stylesheet" type="text/css" href="/cdl/www/cdl.css"/>
      <script src="/cdl/www/cdl.js" type="text/javascript">
	<xsl:text> </xsl:text>
      </script>
      <title>
	<xsl:value-of select="translate(/*/@xlabel,'ḫ','h')"/>
      </title>
    </head>
    <body>
      <xsl:copy-of select="id($block)"/>
    </body>
  </html>
</xsl:template>

</xsl:stylesheet>