Initial population
This commit is contained in:
31
OrganLitIndexByComposer.xsl
Normal file
31
OrganLitIndexByComposer.xsl
Normal file
@@ -0,0 +1,31 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user