27 lines
860 B
XML
27 lines
860 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 Hymn Tune Name</title>
|
|
</head>
|
|
<body>
|
|
<h1>Index By Hymn Tune Name</h1>
|
|
<xsl:for-each select="//OrganLit/HymnTuneNames/HymnTuneName">
|
|
<xsl:sort select="HymnTuneName"/>
|
|
<xsl:call-template name="FormatHymnTuneName"/>
|
|
</xsl:for-each>
|
|
<br/>
|
|
<br/>
|
|
<a href="index.htm">OrganLit Home</a>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="FormatHymnTuneName">
|
|
<br><a href="hymntuneworks-{current()/HymnTuneID}.htm"><xsl:value-of select="current()/HymnTuneName"/></a></br>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|