32 lines
829 B
XML
32 lines
829 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
|
|
<xsl:output method="html" version="4.01" encoding="UTF-8" indent="yes"/>
|
|
<xsl:template match="/">
|
|
<html>
|
|
<head>
|
|
<title>OrganLit - Index By Composer</title>
|
|
</head>
|
|
<body>
|
|
<h1>Index By Composer</h1>
|
|
<xsl:for-each select="//OrganLit/Composers/Composer">
|
|
<xsl:sort select="ComposerName"/>
|
|
<xsl:call-template name="FormatComposer"/>
|
|
</xsl:for-each>
|
|
<br/>
|
|
<br/>
|
|
<a href="index.htm">OrganLit Home</a>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="FormatComposer">
|
|
<br>
|
|
<a href="worksbycomposer.htm#{ComposerID}">
|
|
<xsl:value-of select="ComposerName"/>
|
|
</a>
|
|
</br>
|
|
</xsl:template>
|
|
|
|
|
|
</xsl:stylesheet>
|