--- a/šablona/stránka.xsl Sun Apr 03 00:07:44 2011 +0200
+++ b/šablona/stránka.xsl Sun Apr 03 01:46:20 2011 +0200
@@ -22,6 +22,17 @@
<xsl:apply-templates select="document(fn:encode-for-uri('../vstup/záhlaví.inc'))/g:stránka/h:text/node()"/>
<h1><xsl:value-of select="g:stránka/g:nadpis"/></h1>
<xsl:apply-templates select="g:stránka/h:text/node()"/>
+ <ul id="nabídka">
+ <xsl:for-each select="collection('../vstup/?select=*.xml')[g:stránka/g:pořadí]">
+ <xsl:sort select="empty(./g:stránka/g:pořadí)"/>
+ <xsl:sort select="./g:stránka/g:pořadí"/>
+ <li>
+ <xsl:variable name="xmlSoubor" select="tokenize(document-uri(.), '/')[last()]"/>
+ <xsl:variable name="xhtmlSoubor" select="replace($xmlSoubor, '.xml', '.xhtml')"/>
+ <a href="{fn:encode-for-uri($xhtmlSoubor)}"><xsl:value-of select="./g:stránka/g:nadpis"/></a>
+ </li>
+ </xsl:for-each>
+ </ul>
<xsl:apply-templates select="document(fn:encode-for-uri('../vstup/zápatí.inc'))/g:stránka/h:text/node()"/>
</body>
</html>