Appendice 22

FOGLIO DI STILE PER LA CREAZIONE DEGLI INDICI DI NAVIGAZIONE (VERSIONE Senza PARAMETRI)

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output encoding="ISO-8859-1"/>
	<xsl:template match="/">
		<xsl:apply-templates mode="nome"/>
	</xsl:template>
	<xsl:template match="text" mode="nome">
	
		<xsl:for-each select="//name">
					<xsl:sort select="@key"/>
			<a href="baltico.htm#{@id}"><xsl:value-of select="@key"/> - capitolo <xsl:value-of select="./ancestor::div1/@id"/></a><br/>
			</xsl:for-each>


	</xsl:template>
</xsl:stylesheet>