Initial population

This commit is contained in:
Jon
2026-03-07 19:38:21 -06:00
commit 46735bddd3
59 changed files with 12911 additions and 0 deletions

View 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>